[PATCH] include: Add enum DBPROPFLAGSENUM

Alistair Leslie-Hughes leslie_alistair at hotmail.com
Tue Jan 21 17:44:01 CST 2020


Signed-off-by: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
---
 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;
-- 
2.24.1




More information about the wine-devel mailing list