blob: 8afc3731c41450598441531281e33cca17678dc9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#ifndef __LOAD_MENU_HEADER__
#define __LOAD_MENU_HEADER__
/* *************************************
* Includes
* *************************************/
#include "Global_Inc.h"
#include "Gfx.h"
#include "System.h"
#include "Font.h"
/* *************************************
* Defines
* *************************************/
/* *************************************
* Global prototypes
* *************************************/
void LoadMenuInit(void);
void LoadMenu( char* fileList[],
void * dest[],
uint8_t szFileList , uint8_t szDestList);
void LoadMenuEnd(void);
#endif //__LOAD_MENU_HEADER__
|