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