File:  [RetroPC.NET] / np2 / generic / softkbd.h
Revision 1.5: download - view: text, annotated - select for diffs
Mon Apr 5 18:45:06 2004 JST (21 years, 6 months ago) by yui
Branches: MAIN
CVS tags: HEAD
fix softkbd (T.Yui)


#if defined(SUPPORT_SOFTKBD)

#include	"cmndraw.h"

enum {
	LEDFLAG_NUM		= 0x01,
	LEDFLAG_CAPS	= 0x04,
	LEDFLAG_KANA	= 0x08
};


#ifdef __cplusplus
extern "C" {
#endif

void softkbd_initialize(void);
void softkbd_deinitialize(void);
BOOL softkbd_getsize(int *width, int *height);
BOOL softkbd_paint(CMNVRAM *vram, CMNPALCNV cnv, BOOL redraw);
BOOL softkbd_down(int x, int y);
void softkbd_up(void);
void softkbd_led(REG8 led);

#ifdef __cplusplus
}
#endif

#endif


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