mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 14:40:56 +00:00
bc93bc833e
Minor bugfixes and header tidying.
17 lines
225 B
C
17 lines
225 B
C
#ifndef __WINE_MAPIDEFS_H
|
|
#define __WINE_MAPIDEFS_H
|
|
|
|
#include "wintypes.h"
|
|
|
|
typedef union tagCY CY;
|
|
|
|
union tagCY{
|
|
struct {
|
|
unsigned long Lo;
|
|
long Hi;
|
|
} u;
|
|
LONGLONG int64;
|
|
};
|
|
|
|
#endif /*__WINE_MAPIDEFS_H*/
|