|
|
@@ -3,15 +3,16 @@
|
|
|
|
|
|
#include "hplatform.h"
|
|
|
|
|
|
+#include <stdint.h>
|
|
|
typedef unsigned char uint8;
|
|
|
typedef unsigned short uint16;
|
|
|
typedef unsigned int uint32;
|
|
|
-typedef unsigned long long uint64;
|
|
|
+typedef uint64_t uint64;
|
|
|
|
|
|
typedef char int8;
|
|
|
typedef short int16;
|
|
|
typedef int int32;
|
|
|
-typedef long long int64;
|
|
|
+typedef int64_t int64;
|
|
|
|
|
|
typedef float float32;
|
|
|
typedef double float64;
|