Module: wine Branch: master Commit: 6b6d8ccc393a439453c5bb4fdea335e40cb1318b URL: http://source.winehq.org/git/wine.git/?a=commit;h=6b6d8ccc393a439453c5bb4fde...
Author: Huw Davies huw@codeweavers.com Date: Wed Sep 16 11:44:00 2009 +0100
include: Add DBSTATUSENUM.
---
include/dbs.idl | 18 ++++++++++++++++++ 1 files changed, 18 insertions(+), 0 deletions(-)
diff --git a/include/dbs.idl b/include/dbs.idl index 2383d0c..e39ee97 100644 --- a/include/dbs.idl +++ b/include/dbs.idl @@ -152,3 +152,21 @@ enum DBTYPEENUM };
typedef DWORD DBSTATUS; + +enum DBSTATUSENUM +{ + DBSTATUS_S_OK = 0, + DBSTATUS_E_BADACCESSOR = 1, + DBSTATUS_E_CANTCONVERTVALUE = 2, + DBSTATUS_S_ISNULL = 3, + DBSTATUS_S_TRUNCATED = 4, + DBSTATUS_E_SIGNMISMATCH = 5, + DBSTATUS_E_DATAOVERFLOW = 6, + DBSTATUS_E_CANTCREATE = 7, + DBSTATUS_E_UNAVAILABLE = 8, + DBSTATUS_E_PERMISSIONDENIED = 9, + DBSTATUS_E_INTEGRITYVIOLATION = 10, + DBSTATUS_E_SCHEMAVIOLATION = 11, + DBSTATUS_E_BADSTATUS = 12, + DBSTATUS_S_DEFAULT = 13 +};