mapidefs.h 349 Bytes
Newer Older
1 2 3
#ifndef __WINE_MAPIDEFS_H
#define __WINE_MAPIDEFS_H

4
#include "windef.h"
5

6 7 8 9
#ifndef _tagCY_DEFINED
#define _tagCY_DEFINED
typedef union tagCY
{
10
   struct {
11 12 13 14
#ifdef BIG_ENDIAN
        long Hi;
        long Lo;
#else
15 16
      unsigned long Lo;
      long Hi;
17
#endif
18 19
   } u;
   LONGLONG int64;
20 21
} CY;
#endif /* _tagCY_DEFINED */
22 23

#endif /*__WINE_MAPIDEFS_H*/