repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add System.Net.Http to build
[mono-project.git]
/
mono
/
io-layer
/
types.h
blob
68576c80fe387695b0526c072b82ebd633c177e0
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_ */