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

View File

@@ -17,17 +17,19 @@ typedef unsigned char MwBool;
#define MwFALSE ((MwBool)0) #define MwFALSE ((MwBool)0)
#if __STDC_VERSION__ >= 199901L || __GNUC__ > 2 #if __STDC_VERSION__ >= 199901L || __GNUC__ > 2
typedef long long MwOffset; typedef long long MwI64;
typedef unsigned long long MwUOffset; typedef unsigned long long MwU64;
#elif defined(_MSC_VER) || defined(__BORLANDC__) || defined(__WATCOMC__) #elif defined(_MSC_VER) || defined(__BORLANDC__) || defined(__WATCOMC__)
typedef __int64 MwOffset; typedef __int64 MwI64;
typedef unsigned __int64 MwUOffset; typedef unsigned __int64 MwU64;
#else #else
/* out of hope */ /* out of hope */
typedef long MwOffset; typedef long MwI64;
typedef unsigned long MwUOffset; typedef unsigned long MwU64;
#endif #endif
typedef MwI64 MwOffset;
struct _MwPoint { struct _MwPoint {
int x; int x;
int y; int y;