repo.or.cz
/
wine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Made request tracing more robust against bogus lengths.
[wine.git]
/
include
/
mapidefs.h
blob
b7c205c1127e2b7d2d18663b054b295cec6222a1
1
#ifndef __WINE_MAPIDEFS_H
2
#define __WINE_MAPIDEFS_H
3
4
#include
"windef.h"
5
6
#ifndef _tagCY_DEFINED
7
#define _tagCY_DEFINED
8
typedef
union
tagCY
9
{
10
struct
{
11
#ifdef BIG_ENDIAN
12
long
Hi
;
13
long
Lo
;
14
#else
15
unsigned long
Lo
;
16
long
Hi
;
17
#endif
18
}
u
;
19
LONGLONG int64
;
20
}
CY
;
21
#endif
/* _tagCY_DEFINED */
22
23
#endif
/*__WINE_MAPIDEFS_H*/