mirror of
https://gitea.nishi.boats/pyrite-dev/milsko
synced 2026-01-08 10:23:27 +00:00
add MwOffset
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@370 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
@@ -37,6 +37,14 @@ typedef void (*MwHandler5)(MwWidget handle, void* ptr);
|
|||||||
typedef void (*MwUserHandler)(MwWidget handle, void* user_data, void* call_data);
|
typedef void (*MwUserHandler)(MwWidget handle, void* user_data, void* call_data);
|
||||||
typedef void (*MwErrorHandler)(int code, const char* message, void* user_data);
|
typedef void (*MwErrorHandler)(int code, const char* message, void* user_data);
|
||||||
|
|
||||||
|
#if __STDC_VERSION__ >= 199901L
|
||||||
|
typedef unsigned long long MwOffset;
|
||||||
|
#elif defined(_MSC_VER) || defined(__BORLANDC__) || defined(__WATCOMC__)
|
||||||
|
typedef unsigned __int64 MwOffset;
|
||||||
|
#elif
|
||||||
|
typedef unsigned long MwOffset; /* out of hope */
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <Mw/LowLevel.h>
|
#include <Mw/LowLevel.h>
|
||||||
|
|
||||||
struct _MwPoint {
|
struct _MwPoint {
|
||||||
|
|||||||
Reference in New Issue
Block a user