* roottypes.cs: Rename from tree.cs.
[mono.git] / mono / io-layer / types.h
1 /*
2  * types.h:  Generic type definitions
3  *
4  * Author:
5  *      Dick Porter (dick@ximian.com)
6  *
7  * (C) 2002 Ximian, Inc.
8  */
9
10 #ifndef _WAPI_TYPES_H_
11 #define _WAPI_TYPES_H_
12
13 #include <glib.h>
14
15 typedef union 
16 {
17         struct 
18         {
19                 guint32 LowPart;
20                 gint32 HighPart;
21         } u;
22         
23         guint64 QuadPart;
24 } WapiLargeInteger;
25
26 #endif /* _WAPI_TYPES_H_ */