summaryrefslogtreecommitdiff
path: root/Source/LoadMenu.h
diff options
context:
space:
mode:
authorXaviDCR92 <xavi.dcr@gmail.com>2017-07-21 00:09:35 +0200
committerXaviDCR92 <xavi.dcr@gmail.com>2017-07-21 00:09:35 +0200
commit627de0d81f81ad60d26d782f2425be1e6f5a3dbc (patch)
tree91ffa502aa62c03c2fecf28529ebc8c6b20828c5 /Source/LoadMenu.h
downloadopensend-627de0d81f81ad60d26d782f2425be1e6f5a3dbc.tar.gz
+ First commit. It works painfully slow, but gets the job done. Still lots of room for improvement.
Diffstat (limited to 'Source/LoadMenu.h')
-rw-r--r--Source/LoadMenu.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/Source/LoadMenu.h b/Source/LoadMenu.h
new file mode 100644
index 0000000..8afc373
--- /dev/null
+++ b/Source/LoadMenu.h
@@ -0,0 +1,29 @@
+#ifndef __LOAD_MENU_HEADER__
+#define __LOAD_MENU_HEADER__
+
+/* *************************************
+ * Includes
+ * *************************************/
+
+#include "Global_Inc.h"
+#include "Gfx.h"
+#include "System.h"
+#include "Font.h"
+
+/* *************************************
+ * Defines
+ * *************************************/
+
+/* *************************************
+ * Global prototypes
+ * *************************************/
+
+void LoadMenuInit(void);
+
+void LoadMenu( char* fileList[],
+ void * dest[],
+ uint8_t szFileList , uint8_t szDestList);
+
+void LoadMenuEnd(void);
+
+#endif //__LOAD_MENU_HEADER__