include: dbs.idl - Add missing defines

Alistair Leslie-Hughes leslie_alistair at hotmail.com
Fri Oct 12 01:53:42 CDT 2012


Hi,


Changelog:
     include: dbs.idl - Add missing defines


Best Regards
  Alistair Leslie-Hughes
-------------- next part --------------
>From cd3c03ba0c999bf9a04ea127bf9065a453ca4934 Mon Sep 17 00:00:00 2001
From: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
Date: Fri, 12 Oct 2012 10:31:21 +1100
Subject: [PATCH] Add missing defines
To: wine-patches <wine-patches at winehq.org>

---
 include/dbs.idl |   12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/include/dbs.idl b/include/dbs.idl
index 8ca2e2a..3fa7d72 100644
--- a/include/dbs.idl
+++ b/include/dbs.idl
@@ -183,6 +183,10 @@ enum DBSTATUSENUM
     DBSTATUS_S_DEFAULT = 13
 };
 
+enum DBPROPENUM {
+    DBPROP_INIT_PROMPT     = 0x00000040L,
+};
+
 cpp_quote("#ifdef DBINITCONSTANTS")
 cpp_quote("#ifdef __cplusplus")
 cpp_quote("#define DEFINE_DBGUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \\")
@@ -200,11 +204,19 @@ cpp_quote("#define DEFINE_DBGUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8
 cpp_quote("    EXTERN_C const GUID name DECLSPEC_HIDDEN")
 cpp_quote("#endif")
 
+cpp_quote("DEFINE_DBGUID(DB_NULLGUID,       0x00000000, 0x0000, 0x0000, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00);")
+cpp_quote("DEFINE_DBGUID(DBPROPSET_DBINIT,  0xc8b522bc, 0x5cf3, 0x11ce, 0xad, 0xe5, 0x00, 0xaa, 0x00, 0x44, 0x77, 0x3d);")
 cpp_quote("DEFINE_DBGUID(DBGUID_SESSION,    0xc8b522f5, 0x5cf3, 0x11ce, 0xad, 0xe5, 0x00, 0xaa, 0x00, 0x44, 0x77, 0x3d);")
 cpp_quote("DEFINE_DBGUID(DBGUID_ROWSET,     0xc8b522f6, 0x5cf3, 0x11ce, 0xad, 0xe5, 0x00, 0xaa, 0x00, 0x44, 0x77, 0x3d);")
 cpp_quote("DEFINE_DBGUID(DBGUID_ROW,        0xc8b522f7, 0x5cf3, 0x11ce, 0xad, 0xe5, 0x00, 0xaa, 0x00, 0x44, 0x77, 0x3d);")
 cpp_quote("DEFINE_DBGUID(DBGUID_STREAM,     0xc8b522f9, 0x5cf3, 0x11ce, 0xad, 0xe5, 0x00, 0xaa, 0x00, 0x44, 0x77, 0x3d);")
 
+cpp_quote("#define DBPROMPT_PROMPT              0x01")
+cpp_quote("#define DBPROMPT_COMPLETE            0x02")
+cpp_quote("#define DBPROMPT_COMPLETEREQUIRED    0x03")
+cpp_quote("#define DBPROMPT_NOPROMPT            0x04")
+
+
 typedef struct tagDBCOLUMNACCESS
 {
     void *pData;
-- 
1.7.9.5



More information about the wine-patches mailing list