Module: wine Branch: master Commit: 7bac0f52a674fc4ef271af1e77728b8c488b3e18 URL: http://source.winehq.org/git/wine.git/?a=commit;h=7bac0f52a674fc4ef271af1e77...
Author: Alexandre Julliard julliard@winehq.org Date: Fri Apr 24 13:40:39 2009 +0200
include: Fix the DDE structures for 64-bit.
---
include/ddeml.h | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/include/ddeml.h b/include/ddeml.h index 91ec17f..6ec016f 100644 --- a/include/ddeml.h +++ b/include/ddeml.h @@ -314,14 +314,15 @@ typedef struct tagCONVCONTEXT UINT wFlags; UINT wCountryID; INT iCodePage; - DWORD dwLangID; - DWORD dwSecurity; + DWORD dwLangID; + DWORD dwSecurity; + SECURITY_QUALITY_OF_SERVICE qos; } CONVCONTEXT, *PCONVCONTEXT;
typedef struct tagCONVINFO { DWORD cb; - DWORD hUser; + DWORD_PTR hUser; HCONV hConvPartner; HSZ hszSvcPartner; HSZ hszServiceReq;