[Facades] Remove duplicate System.IO.Compression
[mono-project.git] / mono / io-layer / types.h
blob68576c80fe387695b0526c072b82ebd633c177e0
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 {
16 struct {
17 guint32 LowPart;
18 gint32 HighPart;
19 } u;
20 guint64 QuadPart;
21 } WapiLargeInteger;
23 typedef union {
24 struct {
25 guint32 LowPart;
26 guint32 HighPart;
27 } u;
28 guint64 QuadPart;
29 } WapiULargeInteger;
31 #endif /* _WAPI_TYPES_H_ */