File:  [RetroPC.NET] / np2 / win9x / toolwin.h
Revision 1.1: download - view: text, annotated - select for diffs
Wed Oct 29 03:21:05 2003 JST (22 years ago) by yui
Branches: MAIN
CVS tags: HEAD
add Win9x tool window (T.Yui)


enum {
	FDDLIST_DRV			= 2,
	FDDLIST_MAX			= 8
};

typedef struct {
	int		insert;
	char	name[FDDLIST_MAX][MAX_PATH];
} TOOLFDD;

typedef struct {
	int		posx;
	int		posy;
	TOOLFDD	fdd[FDDLIST_DRV];
} NP2TOOL;

extern	NP2TOOL		np2tool;

BOOL toolwin_initapp(HINSTANCE hInstance);
void toolwin_open(void);
void toolwin_close(void);

void toolwin_movingstart(void);
void toolwin_movingend(void);
void toolwin_setfdd(BYTE drv, const char *name);

void toolwin_readini(void);
void toolwin_writeini(void);


RetroPC.NET-CVS <cvs@retropc.net>