Alistair Leslie-Hughes : include: Add DBPROPSTATUSENUM enum values.

Alexandre Julliard julliard at winehq.org
Fri Nov 6 14:15:24 CST 2020


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

Author: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
Date:   Fri Oct 30 18:50:56 2020 +1100

include: Add DBPROPSTATUSENUM enum values.

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

---

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

diff --git a/include/dbs.idl b/include/dbs.idl
index 19f92b3c05f..cbdb89d23b2 100644
--- a/include/dbs.idl
+++ b/include/dbs.idl
@@ -79,6 +79,22 @@ enum DBPROPOPTIONENUM {
 
 typedef DWORD DBPROPSTATUS;
 
+enum DBPROPSTATUSENUM {
+    DBPROPSTATUS_OK             = 0,
+    DBPROPSTATUS_NOTSUPPORTED   = 1,
+    DBPROPSTATUS_BADVALUE       = 2,
+    DBPROPSTATUS_BADOPTION      = 3,
+    DBPROPSTATUS_BADCOLUMN      = 4,
+    DBPROPSTATUS_NOTALLSETTABLE = 5,
+    DBPROPSTATUS_NOTSETTABLE    = 6,
+    DBPROPSTATUS_NOTSET         = 7,
+    DBPROPSTATUS_CONFLICTING    = 8
+};
+
+enum DBPROPSTATUSENUM21 {
+    DBPROPSTATUS_NOTAVAILABLE   = 9
+};
+
 typedef struct tagDBPROP {
     DBPROPID dwPropertyID;
     DBPROPOPTIONS dwOptions;




More information about the wine-cvs mailing list