git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@535 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-10-31 20:46:29 +00:00
parent 8a3e9b3cd6
commit 17e30cb85d

View File

@@ -16,18 +16,58 @@ typedef unsigned char MwBool;
#define MwTRUE ((MwBool)1)
#define MwFALSE ((MwBool)0)
#if __STDC_VERSION__ >= 199901L || __GNUC__ > 2
#if __STDC_VERSION__ >= 199901L
#include <stdint.h>
typedef int64_t MwI64;
typedef uint64_t MwU64;
typedef int32_t MwI32;
typedef uint32_t MwU32;
typedef int16_t MwI16;
typedef uint16_t MwU16;
typedef int8_t MwI8;
typedef uint8_t MwU8;
#define OTHER_TYPES_DEFINED
#elif __GNUC__ > 2
typedef long long MwI64;
typedef unsigned long long MwU64;
#elif defined(_MSC_VER) || defined(__BORLANDC__) || defined(__WATCOMC__)
typedef __int64 MwI64;
typedef unsigned __int64 MwU64;
typedef __int32 MwI32;
typedef unsigned __int32 MwU32;
typedef __int16 MwI16;
typedef unsigned __int16 MwU16;
typedef __int8 MwI8;
typedef unsigned __int8 MwU8;
#define OTHOTHER_TYPES_DEFINED
#else
/* out of hope */
typedef long MwI64;
typedef unsigned long MwU64;
#endif
#ifdef OTHER_TYPES_DEFINED
#undef OTHER_TYPES_DEFINED
#else
typedef int MwI32;
typedef unsigned int MwU32;
typedef short MwI16;
typedef unsigned short MwU16;
typedef signed char MwI8;
typedef unsigned char MwU8;
#endif
typedef MwI64 MwOffset;
struct _MwPoint {