introduce MwUOffset

git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@533 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-10-31 20:26:40 +00:00
parent 1f380b8c3c
commit 3cfba39d67

View File

@@ -18,10 +18,14 @@ typedef unsigned char MwBool;
#if __STDC_VERSION__ >= 199901L || __GNUC__ > 2
typedef long long MwOffset;
typedef unsigned long long MwUOffset;
#elif defined(_MSC_VER) || defined(__BORLANDC__) || defined(__WATCOMC__)
typedef __int64 MwOffset;
typedef unsigned __int64 MwUOffset;
#else
typedef long MwOffset; /* out of hope */
/* out of hope */
typedef long MwOffset;
typedef unsigned long MwUOffset;
#endif
struct _MwPoint {