summaryrefslogtreecommitdiff
path: root/Build/source/texk/dvipdfm-x/sfnt.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/dvipdfm-x/sfnt.h')
-rw-r--r--Build/source/texk/dvipdfm-x/sfnt.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/Build/source/texk/dvipdfm-x/sfnt.h b/Build/source/texk/dvipdfm-x/sfnt.h
index 69271a229cd..30911d0b83b 100644
--- a/Build/source/texk/dvipdfm-x/sfnt.h
+++ b/Build/source/texk/dvipdfm-x/sfnt.h
@@ -25,21 +25,21 @@
#include "numbers.h"
#include "pdfobj.h"
-/* Acoid conflict with CHAR from <winnt.h>. */
+/* Acoid conflict with CHAR ... from <winnt.h>. */
#define CHAR SFNT_CHAR
+#define ULONG SFNT_ULONG
+#define LONG SFNT_LONG
/* Data Types as described in Apple's TTRefMan */
typedef unsigned char BYTE;
typedef signed char CHAR;
typedef unsigned short USHORT;
typedef signed short SHORT;
-typedef unsigned long ULONG;
-typedef signed long LONG;
-typedef unsigned long Fixed; /* 16.16-bit signed fixed-point number */
+typedef uint32_t ULONG;
+typedef int32_t LONG;
+typedef uint32_t Fixed; /* 16.16-bit signed fixed-point number */
typedef short FWord;
typedef unsigned short uFWord;
-typedef short F2Dot14; /* 16-bit signed fixed number with the low
- 14 bits representing fraction. */
struct sfnt_table
{