|
|
| version 1.3, 2003/10/29 21:35:58 | version 1.5, 2003/11/01 22:23:04 |
|---|---|
| Line 1 | Line 1 |
| enum { | enum { |
| SKINMRU_MAX = 4, | |
| FDDLIST_DRV = 2, | FDDLIST_DRV = 2, |
| FDDLIST_MAX = 8 | FDDLIST_MAX = 8 |
| }; | }; |
| Line 14 typedef struct { | Line 15 typedef struct { |
| typedef struct { | typedef struct { |
| int posx; | int posx; |
| int posy; | int posy; |
| BOOL type; | |
| TOOLFDD fdd[FDDLIST_DRV]; | TOOLFDD fdd[FDDLIST_DRV]; |
| char skin[MAX_PATH]; | char skin[MAX_PATH]; |
| char skinmru[SKINMRU_MAX][MAX_PATH]; | |
| } NP2TOOL; | } NP2TOOL; |
| extern NP2TOOL np2tool; | extern NP2TOOL np2tool; |
| BOOL toolwin_initapp(HINSTANCE hInstance); | BOOL toolwin_initapp(HINSTANCE hInstance); |
| void toolwin_open(void); | void toolwin_create(void); |
| void toolwin_close(void); | void toolwin_destroy(void); |
| HWND toolwin_gethwnd(void); | |
| void toolwin_movingstart(void); | |
| void toolwin_movingend(void); | |
| void toolwin_setfdd(BYTE drv, const char *name); | void toolwin_setfdd(BYTE drv, const char *name); |
| #ifdef __cplusplus | #ifdef __cplusplus |