Woopsi 1.0
GUI Framework for Nintendo DS Homebrew
|
00001 #ifndef _DEFINES_H_ 00002 #define _DEFINES_H_ 00003 00007 const s32 SCREEN_COUNT = 2; 00008 00017 const s32 TOP_SCREEN_Y_OFFSET = 512; 00018 00023 const s32 TOP_SCREEN_NUMBER = 1; 00024 00029 const s32 BOTTOM_SCREEN_NUMBER = 0; 00030 00035 const s32 DOUBLE_CLICK_BOUNDS = 10; 00036 00037 #ifndef USING_SDL 00038 00043 const s32 DOUBLE_CLICK_TIME = 45; 00044 00048 const s32 KEY_INITIAL_REPEAT_TIME = 25; 00049 00053 const s32 KEY_SECONDARY_REPEAT_TIME = 5; 00054 00055 #else 00056 00061 const s32 DOUBLE_CLICK_TIME = 8000; 00062 00066 const s32 KEY_INITIAL_REPEAT_TIME = 4000; 00067 00071 const s32 KEY_SECONDARY_REPEAT_TIME = 1000; 00072 00073 #endif 00074 00078 const char WOOPSI_VERSION[] = "0.99.6 Beta"; 00079 00083 const char WOOPSI_COPYRIGHT[] = "Copyright 2007-2010 Antony Dzeryn"; 00084 00088 #ifndef NULL 00089 #define NULL 0 00090 #endif 00091 00092 #endif