Implement vararg support for s390. Minor fix to atomic operation for s390.
[mono.git] / mono / io-layer / types.h
bloba2b788c59cdb885bb95f5b9099e58b15badd0e54
1 /*
2 * types.h: Generic type definitions
4 * Author:
5 * Dick Porter (dick@ximian.com)
7 * (C) 2002 Ximian, Inc.
8 */
10 #ifndef _WAPI_TYPES_H_
11 #define _WAPI_TYPES_H_
13 #include <glib.h>
15 typedef union
17 struct
19 guint32 LowPart;
20 gint32 HighPart;
21 } u;
23 guint64 QuadPart;
24 } WapiLargeInteger;
26 #endif /* _WAPI_TYPES_H_ */