tools: Fix font structure layout for 64-bit mode.
This commit is contained in:
parent
aad4547d95
commit
7ab35476a7
|
@ -30,8 +30,8 @@ enum data_types {dfChar, dfShort, dfLong, dfString};
|
||||||
|
|
||||||
typedef struct tagFontHeader
|
typedef struct tagFontHeader
|
||||||
{
|
{
|
||||||
short dfVersion; /* Version */
|
SHORT dfVersion; /* Version */
|
||||||
long dfSize; /* Total File Size */
|
LONG dfSize; /* Total File Size */
|
||||||
char dfCopyright[60]; /* Copyright notice */
|
char dfCopyright[60]; /* Copyright notice */
|
||||||
FONTINFO16 fi; /* FONTINFO structure */
|
FONTINFO16 fi; /* FONTINFO structure */
|
||||||
} fnt_hdrS;
|
} fnt_hdrS;
|
||||||
|
|
|
@ -40,8 +40,8 @@
|
||||||
#include "pshpack1.h"
|
#include "pshpack1.h"
|
||||||
struct _fnt_header
|
struct _fnt_header
|
||||||
{
|
{
|
||||||
short dfVersion;
|
SHORT dfVersion;
|
||||||
long dfSize;
|
LONG dfSize;
|
||||||
char dfCopyright[60];
|
char dfCopyright[60];
|
||||||
FONTINFO16 fi;
|
FONTINFO16 fi;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue