diff options
| author | Xavi Del Campo <xavi.dcr@tutanota.com> | 2020-03-03 18:39:09 +0100 |
|---|---|---|
| committer | Xavi Del Campo <xavi.dcr@tutanota.com> | 2020-03-03 19:40:00 +0100 |
| commit | 792e22676786a577b2edc0ed0ed78e51c5b38245 (patch) | |
| tree | 3a5b1092af322003be3189bf6d58f362dcfe1dca /include/LoadMenu.h | |
| parent | 62adc2edd17cbd39272715d29d1b4c8650ef7dde (diff) | |
| download | opensend-792e22676786a577b2edc0ed0ed78e51c5b38245.tar.gz | |
Refactoring
Diffstat (limited to 'include/LoadMenu.h')
| -rw-r--r-- | include/LoadMenu.h | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/include/LoadMenu.h b/include/LoadMenu.h index 8afc373..881eb01 100644 --- a/include/LoadMenu.h +++ b/include/LoadMenu.h @@ -1,14 +1,11 @@ -#ifndef __LOAD_MENU_HEADER__ -#define __LOAD_MENU_HEADER__ +#ifndef LOAD_MENU_H +#define LOAD_MENU_H /* ************************************* * Includes * *************************************/ -#include "Global_Inc.h" -#include "Gfx.h" -#include "System.h" -#include "Font.h" +#include <stdint.h> /* ************************************* * Defines @@ -20,10 +17,10 @@ void LoadMenuInit(void); -void LoadMenu( char* fileList[], - void * dest[], - uint8_t szFileList , uint8_t szDestList); - +void LoadMenu( const char *const *fileList, + void *const *dest, + uint8_t szFileList, uint8_t szDestList); + void LoadMenuEnd(void); -#endif //__LOAD_MENU_HEADER__ +#endif /* LOAD_MENU_H */ |
