00001
00002
00003
00004
00005
00006
00007
00008 #ifndef _DEMO_H_
00009 #define _DEMO_H_
00010
00011 #include "FreeTypeGX.h"
00012
00013 enum {
00014 METHOD_AUTO,
00015 METHOD_SD,
00016 METHOD_USB,
00017 METHOD_DVD,
00018 METHOD_SMB,
00019 METHOD_MC_SLOTA,
00020 METHOD_MC_SLOTB,
00021 METHOD_SD_SLOTA,
00022 METHOD_SD_SLOTB
00023 };
00024
00025 struct SSettings {
00026 int AutoLoad;
00027 int AutoSave;
00028 int LoadMethod;
00029 int SaveMethod;
00030 char Folder1[256];
00031 char Folder2[256];
00032 char Folder3[256];
00033 };
00034 extern struct SSettings Settings;
00035
00036 void ExitApp();
00037 extern int ExitRequested;
00038 extern FreeTypeGX *fontSystem[];
00039
00040 #endif