1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #ifndef __PALACE_H
- #define __PALACE_H
-
-
- #include "ohboard.h"
- #define PALACE_ROW 2
- #define PALACE_COL 3
- #define PALACE_NUM (PALACE_ROW*PALACE_COL)
- #define PALACE_TOP 25
- #define PALACE_LEFT 0
- #define PALACE_ICON_WIDE 40
- #define PALACE_ICON_HIGH 40
- #define PALACE_SURROUND_SIZE 1
- #define USE_ICON_PALACE 0
- #define USE_NON_ICON_PALACE 1
- #define PALACE_ICON_TYPE USE_NON_ICON_PALACE
- typedef struct SUT_PALACE{
- const char *mainTile;
- const char **Title;
- const char *FileNamePrefix;
- unsigned int Index;
- unsigned short wide;
- unsigned short high;
- unsigned short ox;
- unsigned short oy;
- unsigned char showAlreadyFlag;
- }SUT_PALACE;
- void PalaceInit(SUT_PALACE *sutPalace,const char **title , const char *prefix, const char *mainInfo);
- unsigned short PalaceResponse(SUT_PALACE *sutPalace);
-
- #endif
-
|