From 792e22676786a577b2edc0ed0ed78e51c5b38245 Mon Sep 17 00:00:00 2001 From: Xavi Del Campo Date: Tue, 3 Mar 2020 18:39:09 +0100 Subject: Refactoring --- include/LoadMenu.h | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) (limited to 'include/LoadMenu.h') 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 /* ************************************* * 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 */ -- cgit v1.2.3