blob: 881eb017cc15989f110f924edc253ce648e3ed90 (
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
|
#ifndef LOAD_MENU_H
#define LOAD_MENU_H
/* *************************************
* Includes
* *************************************/
#include <stdint.h>
/* *************************************
* Defines
* *************************************/
/* *************************************
* Global prototypes
* *************************************/
void LoadMenuInit(void);
void LoadMenu( const char *const *fileList,
void *const *dest,
uint8_t szFileList, uint8_t szDestList);
void LoadMenuEnd(void);
#endif /* LOAD_MENU_H */
|