projects
/
wine
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Moved stuff to the right place.
[wine]
/
include
/
mapidefs.h
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*/