File:
[RetroPC.NET] /
np2 /
win9x /
toolwin.h
Revision
1.6:
download - view:
text,
annotated -
select for diffs
Fri Nov 21 15:51:14 2003 JST (21 years, 11 months ago) by
yui
Branches:
MAIN
CVS tags:
VER_0_80,
VER_0_79,
VER_0_78,
VER_0_77,
VER_0_76,
VER_0_75,
VER_0_74,
VER_0_73,
VER_0_72,
HEAD
debuneko- (T.Yui)
enum {
SKINMRU_MAX = 4,
FDDLIST_DRV = 2,
FDDLIST_MAX = 8
};
typedef struct {
int insert;
UINT cnt;
UINT pos[FDDLIST_MAX];
char name[FDDLIST_MAX][MAX_PATH];
} TOOLFDD;
typedef struct {
int posx;
int posy;
BOOL type;
TOOLFDD fdd[FDDLIST_DRV];
char skin[MAX_PATH];
char skinmru[SKINMRU_MAX][MAX_PATH];
} NP2TOOL;
extern NP2TOOL np2tool;
BOOL toolwin_initapp(HINSTANCE hInstance);
void toolwin_create(void);
void toolwin_destroy(void);
HWND toolwin_gethwnd(void);
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_writeini(void);
RetroPC.NET-CVS <cvs@retropc.net>