blob: c87f5d4f8c0f00b8717c905175f0fd676e918e1e (
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
|
#ifndef LOAD_MENU_HEADER__
#define LOAD_MENU_HEADER__
/* *************************************
* Includes
* *************************************/
#include "Global_Inc.h"
/* *************************************
* Defines
* *************************************/
/* *************************************
* Global prototypes
* *************************************/
void LoadMenu( const char* const fileList[],
void* const dest[],
uint8_t szFileList , uint8_t szDestList);
void LoadMenuEnd(void);
#endif //LOAD_MENU_HEADER__
|