File:  [RetroPC.NET] / mkfont32 / win9x / fontmng.h
Revision 1.2: download - view: text, annotated - select for diffs
Thu Jun 10 12:11:47 2004 JST (21 years, 4 months ago) by yui
Branches: MAIN
CVS tags: HEAD
fix x68k fonts (T.Yui)


enum {
	FDAT_BOLD			= 0x01,
	FDAT_PROPORTIONAL	= 0x02,
	FDAT_ALIAS			= 0x04,
	FDAT_ANSI			= 0x08,

	FDAT_HALFWIDTH		= 0x40
};

enum {
	FDAT_DEPTH			= 64,
	FDAT_DEPTHBIT		= 6
};

typedef struct {
	int		width;
	int		height;
	int		pitch;
} _FNTDAT, *FNTDAT;

#ifdef __cplusplus
extern "C" {
#endif

void *fontmng_create(int size, UINT type, const TCHAR *fontface);
void fontmng_destroy(void *hdl);

BOOL fontmng_getsize(void *hdl, const char *string, POINT_T *pt);
BOOL fontmng_getdrawsize(void *hdl, const char *string, POINT_T *pt);
FNTDAT fontmng_get(void *hdl, const char *string);

#ifdef __cplusplus
}
#endif


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