[marshal] Wrap icall managed obj input arguments with handles.
[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         struct {
17                 guint32 LowPart;
18                 gint32 HighPart;
19         } u;
20         guint64 QuadPart;
21 } WapiLargeInteger;
22
23 typedef union {
24         struct {
25                 guint32 LowPart;
26                 guint32 HighPart;
27         } u;
28         guint64 QuadPart;
29 } WapiULargeInteger;
30
31 #endif /* _WAPI_TYPES_H_ */