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:
Alistair Leslie-Hughes 2020-10-30 18:50:56 +11:00 committed by Alexandre Julliard
parent cb1ff768ac
commit f5831eda2e
1 changed files with 16 additions and 0 deletions

View File

@ -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;