File:  [RetroPC.NET] / np2 / win9x / mousemng.h
Revision 1.2: download - view: text, annotated - select for diffs
Wed Nov 5 00:44:59 2003 JST (21 years, 11 months ago) by yui
Branches: MAIN
CVS tags: VER_0_73, VER_0_72, VER_0_71, VER_0_70, HEAD
fix win9x UI (T.Yui)


enum {
	uPD8255A_LEFTBIT	= 0x80,
	uPD8255A_RIGHTBIT	= 0x20
};


#ifdef __cplusplus
extern "C" {
#endif

BYTE mousemng_getstat(SINT16 *x, SINT16 *y, int clear);

#ifdef __cplusplus
}
#endif


// ---- for windows

enum {
	MOUSEMNG_LEFTDOWN		= 0,
	MOUSEMNG_LEFTUP,
	MOUSEMNG_RIGHTDOWN,
	MOUSEMNG_RIGHTUP
};

enum {
	MOUSEPROC_SYSTEM		= 0,
	MOUSEPROC_WINUI,
	MOUSEPROC_BG
};


void mousemng_initialize(void);
void mousemng_callback(void);
BOOL mousemng_buttonevent(UINT event);
void mousemng_enable(UINT proc);
void mousemng_disable(UINT proc);
void mousemng_toggle(UINT proc);


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