Alistair Leslie-Hughes : include: Add DBPROPSTATUSENUM enum values.
Module: wine Branch: master Commit: f5831eda2ec9918e5fa794682ac8c114a7c6b672 URL: https://source.winehq.org/git/wine.git/?a=commit;h=f5831eda2ec9918e5fa794682... Author: Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com> Date: Fri Oct 30 18:50:56 2020 +1100 include: Add DBPROPSTATUSENUM enum values. Signed-off-by: Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com> Signed-off-by: Alexandre Julliard <julliard(a)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;
participants (1)
-
Alexandre Julliard