Brendan Shanks : include: Fix size of RecordCreateOptionsEnum.

Alexandre Julliard julliard at winehq.org
Wed Feb 12 16:21:04 CST 2020


Module: wine
Branch: master
Commit: 61d0cc78b24cf591746ab62d21259fe3b8e4d7e2
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=61d0cc78b24cf591746ab62d21259fe3b8e4d7e2

Author: Brendan Shanks <bshanks at codeweavers.com>
Date:   Tue Feb 11 15:57:02 2020 -0800

include: Fix size of RecordCreateOptionsEnum.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=48577
Signed-off-by: Brendan Shanks <bshanks at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 include/msado15_backcompat.idl | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/include/msado15_backcompat.idl b/include/msado15_backcompat.idl
index e4a847ab85..68fda6ab21 100644
--- a/include/msado15_backcompat.idl
+++ b/include/msado15_backcompat.idl
@@ -430,12 +430,12 @@ typedef [uuid(00000574-0000-0010-8000-00aa006d2ea4)] enum CopyRecordOptionsEnum
 
 typedef [uuid(00000570-0000-0010-8000-00aa006d2ea4)] enum RecordCreateOptionsEnum
 {
-    adCreateCollection = 0x00002000,
-    adCreateStructDoc = 0x80000000,
-    adCreateNonCollection = 0x00000000,
-    adOpenIfExists = 0x02000000,
-    adCreateOverwrite = 0x04000000,
-    adFailIfNotExists = -1
+    adCreateCollection = (int) 0x00002000,
+    adCreateStructDoc = (int) 0x80000000,
+    adCreateNonCollection = (int) 0x00000000,
+    adOpenIfExists = (int) 0x02000000,
+    adCreateOverwrite = (int) 0x04000000,
+    adFailIfNotExists = (int) -1
 } RecordCreateOptionsEnum;
 
 typedef [uuid(00000571-0000-0010-8000-00aa006d2ea4)] enum RecordOpenOptionsEnum




More information about the wine-cvs mailing list