Commit 7ab35476 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

tools: Fix font structure layout for 64-bit mode.

parent aad4547d
......@@ -30,8 +30,8 @@ enum data_types {dfChar, dfShort, dfLong, dfString};
typedef struct tagFontHeader
{
short dfVersion; /* Version */
long dfSize; /* Total File Size */
SHORT dfVersion; /* Version */
LONG dfSize; /* Total File Size */
char dfCopyright[60]; /* Copyright notice */
FONTINFO16 fi; /* FONTINFO structure */
} fnt_hdrS;
......
......@@ -40,8 +40,8 @@
#include "pshpack1.h"
struct _fnt_header
{
short dfVersion;
long dfSize;
SHORT dfVersion;
LONG dfSize;
char dfCopyright[60];
FONTINFO16 fi;
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment