Added mapi.h with the definitions needed by the MFC.
[wine] / include / mapidefs.h
1 #ifndef __WINE_MAPIDEFS_H
2 #define __WINE_MAPIDEFS_H
3
4 #include "windef.h"
5
6 /* Some types */
7
8 typedef unsigned char*          LPBYTE;
9 #ifndef __LHANDLE
10 #define __LHANDLE
11 typedef unsigned long           LHANDLE, *LPLHANDLE;
12 #endif
13
14 #ifndef _tagCY_DEFINED
15 #define _tagCY_DEFINED
16 typedef union tagCY
17 {
18    struct {
19 #ifdef BIG_ENDIAN
20         long Hi;
21         long Lo;
22 #else
23       unsigned long Lo;
24       long Hi;
25 #endif
26    } u;
27    LONGLONG int64;
28 } CY;
29 #endif /* _tagCY_DEFINED */
30
31 #endif /*__WINE_MAPIDEFS_H*/