|
|
| version 1.1, 2003/10/28 18:21:05 | version 1.4, 2003/10/30 22:33:34 |
|---|---|
| Line 1 | Line 1 |
| enum { | enum { |
| SKINMRU_MAX = 4, | |
| FDDLIST_DRV = 2, | FDDLIST_DRV = 2, |
| FDDLIST_MAX = 8 | FDDLIST_MAX = 8 |
| }; | }; |
| typedef struct { | typedef struct { |
| int insert; | int insert; |
| UINT cnt; | |
| UINT pos[FDDLIST_MAX]; | |
| char name[FDDLIST_MAX][MAX_PATH]; | char name[FDDLIST_MAX][MAX_PATH]; |
| } TOOLFDD; | } TOOLFDD; |
| Line 13 typedef struct { | Line 16 typedef struct { |
| int posx; | int posx; |
| int posy; | int posy; |
| TOOLFDD fdd[FDDLIST_DRV]; | TOOLFDD fdd[FDDLIST_DRV]; |
| char skin[MAX_PATH]; | |
| char skinmru[SKINMRU_MAX][MAX_PATH]; | |
| } NP2TOOL; | } NP2TOOL; |
| extern NP2TOOL np2tool; | extern NP2TOOL np2tool; |
| Line 25 void toolwin_movingstart(void); | Line 30 void toolwin_movingstart(void); |
| void toolwin_movingend(void); | void toolwin_movingend(void); |
| void toolwin_setfdd(BYTE drv, const char *name); | void toolwin_setfdd(BYTE drv, const char *name); |
| #ifdef __cplusplus | |
| extern "C" { | |
| #endif | |
| void toolwin_fddaccess(BYTE drv); | |
| void toolwin_hddaccess(BYTE drv); | |
| #ifdef __cplusplus | |
| } | |
| #endif | |
| void toolwin_draw(BYTE frame); | |
| void toolwin_readini(void); | void toolwin_readini(void); |
| void toolwin_writeini(void); | void toolwin_writeini(void); |