File:  [RetroPC.NET] / np2 / vram / scrnbmp.h
Revision 1.2: download - view: text, annotated - select for diffs
Sat Mar 27 19:52:55 2004 JST (21 years, 7 months ago) by yui
Branches: MAIN
CVS tags: VER_0_80, VER_0_79, VER_0_78, VER_0_77, VER_0_76, HEAD
fix bmp making (T.Yui)


enum {
	SCRNBMP_1BIT	= 0,
	SCRNBMP_4BIT	= 1,
	SCRNBMP_8BIT	= 2,
	SCRNBMP_24BIT	= 3
};

typedef struct {
	UINT	type;
	BYTE	*ptr;
	UINT	size;
} _SCRNBMP, *SCRNBMP;


#ifdef __cplusplus
extern "C" {
#endif

SCRNBMP scrnbmp(void);

#ifdef __cplusplus
}
#endif


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