Fix a comptaible issue with dxsdk and vc, our dxsdk want the name #define __wtypes_h__ (same as windows psdk)

this fix a comptiable issue with vc as well, wine ldl can not name a idl correct so I hardcode in this name


svn path=/trunk/; revision=32269
This commit is contained in:
Magnus Olsen 2008-02-10 18:35:20 +00:00
parent 8b072734a8
commit e1a0d23b9f

View file

@ -29,6 +29,9 @@ import "guiddef.h";
interface IWinTypes
{
cpp_quote("#ifndef __wtypes_h__ ") /* fix compatible issue with VC and dxsdk use same name as ms __wtypes_h__*/
cpp_quote("#define __wtypes_h__ ") /* fix compatible issue with VC and dxsdk use same name as ms __wtypes_h__*/
/******************** BASIC WIN32 TYPES ********************/
cpp_quote("#if 0 /* winnt.h */") /* don't redefine these */
@ -812,4 +815,5 @@ typedef union switch(DWORD tyspec)
} ByObjectId;
} uCLSSPEC;
cpp_quote("#endif") /* fix compatible issue with VC and dxsdk use same name as ms __wtypes_h__*/
} /* interface IWinTypes */