Merge pull request #3979 from radical/fix-xbuild-tgt
[mono.git] / mono / io-layer / types.h
index a2b788c59cdb885bb95f5b9099e58b15badd0e54..68576c80fe387695b0526c072b82ebd633c177e0 100644 (file)
 
 #include <glib.h>
 
-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_ */