|
|
| version 1.5, 2003/11/01 22:23:04 | version 1.8, 2005/02/09 20:11:35 |
|---|---|
| Line 9 typedef struct { | Line 9 typedef struct { |
| int insert; | int insert; |
| UINT cnt; | UINT cnt; |
| UINT pos[FDDLIST_MAX]; | UINT pos[FDDLIST_MAX]; |
| char name[FDDLIST_MAX][MAX_PATH]; | OEMCHAR name[FDDLIST_MAX][MAX_PATH]; |
| } TOOLFDD; | } TOOLFDD; |
| typedef struct { | typedef struct { |
| Line 17 typedef struct { | Line 17 typedef struct { |
| int posy; | int posy; |
| BOOL type; | BOOL type; |
| TOOLFDD fdd[FDDLIST_DRV]; | TOOLFDD fdd[FDDLIST_DRV]; |
| char skin[MAX_PATH]; | OEMCHAR skin[MAX_PATH]; |
| char skinmru[SKINMRU_MAX][MAX_PATH]; | OEMCHAR skinmru[SKINMRU_MAX][MAX_PATH]; |
| } NP2TOOL; | } NP2TOOL; |
| extern NP2TOOL np2tool; | extern NP2TOOL np2tool; |
| BOOL toolwin_initapp(HINSTANCE hInstance); | BOOL toolwin_initapp(HINSTANCE hInstance); |
| Line 28 void toolwin_create(void); | Line 29 void toolwin_create(void); |
| void toolwin_destroy(void); | void toolwin_destroy(void); |
| HWND toolwin_gethwnd(void); | HWND toolwin_gethwnd(void); |
| void toolwin_setfdd(BYTE drv, const char *name); | void toolwin_setfdd(UINT8 drv, const OEMCHAR *name); |
| #ifdef __cplusplus | #ifdef __cplusplus |
| extern "C" { | extern "C" { |
| #endif | #endif |
| void toolwin_fddaccess(BYTE drv); | void toolwin_fddaccess(UINT8 drv); |
| void toolwin_hddaccess(BYTE drv); | void toolwin_hddaccess(UINT8 drv); |
| #ifdef __cplusplus | #ifdef __cplusplus |
| } | } |
| #endif | #endif |
| void toolwin_draw(BYTE frame); | void toolwin_draw(UINT8 frame); |
| void toolwin_readini(void); | void toolwin_readini(void); |
| void toolwin_writeini(void); | void toolwin_writeini(void); |