Alistair Leslie-Hughes : include: Add enum DBPROPFLAGSENUM.

Alexandre Julliard julliard at winehq.org
Thu Jan 23 15:48:49 CST 2020


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

Author: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
Date:   Tue Jan 21 23:44:01 2020 +0000

include: Add enum DBPROPFLAGSENUM.

Signed-off-by: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

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

diff --git a/include/dbs.idl b/include/dbs.idl
index d04aa09ff1..65fd5b1d36 100644
--- a/include/dbs.idl
+++ b/include/dbs.idl
@@ -95,6 +95,24 @@ typedef struct tagDBPROPSET {
 
 typedef DWORD DBPROPFLAGS;
 
+enum DBPROPFLAGSENUM
+{
+    DBPROPFLAGS_NOTSUPPORTED     = 0x0000,
+    DBPROPFLAGS_COLUMN           = 0x0001,
+    DBPROPFLAGS_DATASOURCE       = 0x0002,
+    DBPROPFLAGS_DATASOURCECREATE = 0x0004,
+    DBPROPFLAGS_DATASOURCEINFO   = 0x0008,
+    DBPROPFLAGS_DBINIT           = 0x0010,
+    DBPROPFLAGS_INDEX            = 0x0020,
+    DBPROPFLAGS_ROWSET           = 0x0040,
+    DBPROPFLAGS_TABLE            = 0x0080,
+    DBPROPFLAGS_COLUMNOK         = 0x0100,
+    DBPROPFLAGS_READ             = 0x0200,
+    DBPROPFLAGS_WRITE            = 0x0400,
+    DBPROPFLAGS_REQUIRED         = 0x0800,
+    DBPROPFLAGS_SESSION          = 0x1000,
+};
+
 typedef struct tagDBPROPINFO {
     LPOLESTR pwszDescription;
     DBPROPID dwPropertyID;




More information about the wine-cvs mailing list