blob: b7c205c1127e2b7d2d18663b054b295cec6222a1 [file] [log] [blame]
#ifndef __WINE_MAPIDEFS_H
#define __WINE_MAPIDEFS_H
#include "windef.h"
#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*/