X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mono%2Fio-layer%2Ftypes.h;h=68576c80fe387695b0526c072b82ebd633c177e0;hb=9458e258f9de68ba5bcf4c8b278d5c50c8efdc79;hp=a2b788c59cdb885bb95f5b9099e58b15badd0e54;hpb=cccbf6a4b7152c24fafc319e77060a4723a8560e;p=mono.git diff --git a/mono/io-layer/types.h b/mono/io-layer/types.h index a2b788c59cd..68576c80fe3 100644 --- a/mono/io-layer/types.h +++ b/mono/io-layer/types.h @@ -12,15 +12,20 @@ #include -typedef union -{ - struct - { +typedef union { + struct { guint32 LowPart; gint32 HighPart; } u; - guint64 QuadPart; } WapiLargeInteger; +typedef union { + struct { + guint32 LowPart; + guint32 HighPart; + } u; + guint64 QuadPart; +} WapiULargeInteger; + #endif /* _WAPI_TYPES_H_ */