mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 20:18:28 +00:00
31 lines
504 B
C
31 lines
504 B
C
#ifndef __WINE_MAPIDEFS_H
|
|
#define __WINE_MAPIDEFS_H
|
|
|
|
#include "windef.h"
|
|
|
|
/* Some types */
|
|
|
|
typedef unsigned char* LPBYTE;
|
|
#ifndef __LHANDLE
|
|
#define __LHANDLE
|
|
typedef unsigned long LHANDLE, *LPLHANDLE;
|
|
#endif
|
|
|
|
#ifndef _tagCY_DEFINED
|
|
#define _tagCY_DEFINED
|
|
typedef union tagCY
|
|
{
|
|
struct {
|
|
#ifdef BIG_ENDIAN
|
|
long Hi;
|
|
long Lo;
|
|
#else
|
|
unsigned long Lo;
|
|
long Hi;
|
|
#endif
|
|
} u;
|
|
LONGLONG int64;
|
|
} CY;
|
|
#endif /* _tagCY_DEFINED */
|
|
|
|
#endif /*__WINE_MAPIDEFS_H*/
|