Commit f5831eda authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

include: Add DBPROPSTATUSENUM enum values.

parent cb1ff768
...@@ -79,6 +79,22 @@ enum DBPROPOPTIONENUM { ...@@ -79,6 +79,22 @@ enum DBPROPOPTIONENUM {
typedef DWORD DBPROPSTATUS; 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 { typedef struct tagDBPROP {
DBPROPID dwPropertyID; DBPROPID dwPropertyID;
DBPROPOPTIONS dwOptions; DBPROPOPTIONS dwOptions;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment