wtypes: Don't specify alignment for DOUBLE and DATE on MSVC.

oldstable
Alexandre Julliard 2006-01-25 15:03:46 +01:00
parent f8f34d9fab
commit cf675c1197
1 changed files with 2 additions and 2 deletions

View File

@ -181,7 +181,7 @@ typedef LONG_PTR LPARAM;
cpp_quote("#endif /* winnt.h */")
cpp_quote("#if 0") /* for IDL only */
cpp_quote("#ifdef _MSC_VER") /* for IDL and MSVC only */
typedef double DOUBLE;
cpp_quote("#else")
cpp_quote("typedef double DECLSPEC_ALIGN(8) DOUBLE;")
@ -599,7 +599,7 @@ typedef enum tagSTATFLAG {
/******************** OLE Automation ********************/
cpp_quote("#if 0") /* for IDL only */
cpp_quote("#ifdef _MSC_VER") /* for IDL and MSVC only */
typedef double DATE;
cpp_quote("#else")
cpp_quote("typedef double DECLSPEC_ALIGN(8) DATE;")