Most of the currency variant conversion functions implemented.
[wine] / include / mapidefs.h
1 #ifndef __WINE_MAPIDEFS_H
2 #define __WINE_MAPIDEFS_H
3
4 #include "wintypes.h"
5
6 typedef union tagCY CY;
7
8 union tagCY{
9    struct {
10       unsigned long Lo;
11       long Hi;
12    } u;
13    LONGLONG int64;
14 };
15
16 #endif /*__WINE_MAPIDEFS_H*/