| 18 |
#ifndef _MENU_H_ |
#ifndef _MENU_H_ |
| 19 |
#define _MENU_H_ |
#define _MENU_H_ |
| 20 |
|
|
| 21 |
|
#include "common.h" |
| 22 |
|
|
| 23 |
#define MAX_MENUITEM_LENGTH 50 |
#define MAX_MENUITEM_LENGTH 50 |
| 24 |
#define MAX_MENUITEMS 30 |
#define MAX_MENUITEMS 30 |
| 25 |
#define MAX_MENUNAME_LENGTH 256 |
#define MAX_MENUNAME_LENGTH 256 |
| 49 |
struct _menu_screen |
struct _menu_screen |
| 50 |
{ |
{ |
| 51 |
int row, col, show; |
int row, col, show; |
| 52 |
char filename[256]; |
char filename[FILE_PATH_LEN]; |
| 53 |
}; |
}; |
| 54 |
typedef struct _menu_screen MENU_SCREEN; |
typedef struct _menu_screen MENU_SCREEN; |
| 55 |
|
|