include: Add DBPROPSTATUSENUM enum values.
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
cb1ff768ac
commit
f5831eda2e
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue