|
|
| version 1.1, 2003/10/16 17:58:45 | version 1.3, 2006/12/23 12:49:22 |
|---|---|
| Line 3 enum { | Line 3 enum { |
| FDAT_BOLD = 0x01, | FDAT_BOLD = 0x01, |
| FDAT_PROPORTIONAL = 0x02, | FDAT_PROPORTIONAL = 0x02, |
| FDAT_ALIAS = 0x04, | FDAT_ALIAS = 0x04, |
| FDAT_ANSI = 0x08 | FDAT_ANSI = 0x08, |
| FDAT_SHIFTJIS = 0x10 | |
| }; | }; |
| enum { | enum { |
| Line 21 typedef struct { | Line 22 typedef struct { |
| extern "C" { | extern "C" { |
| #endif | #endif |
| void *fontmng_create(int size, UINT type, const TCHAR *fontface); | void *fontmng_create(int size, UINT type, const OEMCHAR *fontface); |
| void fontmng_destroy(void *hdl); | void fontmng_destroy(void *hdl); |
| BOOL fontmng_getsize(void *hdl, const char *string, POINT_T *pt); | BRESULT fontmng_getsize(void *hdl, const OEMCHAR *string, POINT_T *pt); |
| BOOL fontmng_getdrawsize(void *hdl, const char *string, POINT_T *pt); | BRESULT fontmng_getdrawsize(void *hdl, const OEMCHAR *string, POINT_T *pt); |
| FNTDAT fontmng_get(void *hdl, const char *string); | FNTDAT fontmng_get(void *hdl, const OEMCHAR *string); |
| #ifdef __cplusplus | #ifdef __cplusplus |
| } | } |