| 1 | // (c) Copyright 2006 notaz, All rights reserved.\r |
| 2 | // Free for non-commercial use.\r |
| 3 | \r |
| 4 | // For commercial use, separate licencing terms must be obtained.\r |
| 5 | \r |
| 6 | extern char menuErrorMsg[40];\r |
| 7 | \r |
| 8 | void gp2x_text_out8 (int x, int y, char *texto, ...);\r |
| 9 | void gp2x_text_out15 (int x, int y, char *text);\r |
| 10 | void gp2x_text_out8_2(int x, int y, char *texto, int color);\r |
| 11 | void menu_loop(void);\r |
| 12 | \r |
| 13 | #define CONFIGURABLE_KEYS \\r |
| 14 | (GP2X_UP|GP2X_DOWN|GP2X_LEFT|GP2X_RIGHT|GP2X_A|GP2X_B|GP2X_X|GP2X_Y| \\r |
| 15 | GP2X_START|GP2X_SELECT|GP2X_L|GP2X_R|GP2X_PUSH|GP2X_VOL_UP|GP2X_VOL_DOWN)\r |
| 16 | \r |