| 24 |
#include <sys/ipc.h> |
#include <sys/ipc.h> |
| 25 |
#include <sys/shm.h> |
#include <sys/shm.h> |
| 26 |
|
|
| 27 |
#define MENU_SCREEN_PATH_PREFIX "var/MENU_SCR_" |
enum _menu_constant_t |
| 28 |
#define MENU_CONF_DELIM_WITH_SPACE " ,\t\r\n" |
{ |
| 29 |
#define MENU_CONF_DELIM_WITHOUT_SPACE "\r\n" |
MENU_SET_RESERVED_LENGTH = sizeof(int16_t) * 4, |
| 30 |
|
MENU_SHMGET_RETRY_LIMIT = 10, |
| 31 |
|
}; |
| 32 |
|
|
| 33 |
#define MENU_SET_RESERVED_LENGTH (sizeof(int16_t) * 4) |
static const char MENU_CONF_DELIM_WITH_SPACE[] = " ,\t\r\n"; |
| 34 |
|
static const char MENU_CONF_DELIM_WITHOUT_SPACE[] = "\r\n"; |
|
#define MENU_SHMGET_RETRY_LIMIT 10 |
|
| 35 |
|
|
| 36 |
MENU_SET bbs_menu; |
MENU_SET bbs_menu; |
| 37 |
MENU_SET top10_menu; |
MENU_SET top10_menu; |