Module: wine Branch: master Commit: afac75ef0fecbc4f1aa66de319a78c5988e75778 URL: http://source.winehq.org/git/wine.git/?a=commit;h=afac75ef0fecbc4f1aa66de319...
Author: Alexandre Julliard julliard@winehq.org Date: Tue Apr 6 21:44:09 2010 +0200
include: Fix a couple of oaidl.idl definitions for 64-bit.
---
include/oaidl.idl | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/include/oaidl.idl b/include/oaidl.idl index 833d31b..0dc4c05 100644 --- a/include/oaidl.idl +++ b/include/oaidl.idl @@ -343,7 +343,7 @@ const USHORT PARAMFLAG_FHASDEFAULT = 0x20; const USHORT PARAMFLAG_FHASCUSTDATA = 0x40;
typedef struct tagIDLDESC { - ULONG dwReserved; + ULONG_PTR dwReserved; USHORT wIDLFlags; } IDLDESC, *LPIDLDESC;
@@ -404,8 +404,8 @@ typedef struct tagEXCEPINFO { BSTR bstrDescription; BSTR bstrHelpFile; DWORD dwHelpContext; - ULONG pvReserved; - ULONG pfnDeferredFillIn; + ULONG_PTR pvReserved; + ULONG_PTR pfnDeferredFillIn; SCODE scode; } EXCEPINFO; cpp_quote("#else")