introduce MwUOffset
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@533 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
parent
1f380b8c3c
commit
3cfba39d67
1 changed files with 5 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue