From 6b6d8ccc393a439453c5bb4fdea335e40cb1318b Mon Sep 17 00:00:00 2001 From: Huw Davies Date: Wed, 16 Sep 2009 11:44:00 +0100 Subject: [PATCH] include: Add DBSTATUSENUM. --- include/dbs.idl | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/include/dbs.idl b/include/dbs.idl index 2383d0cabe1..e39ee975852 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 +}; -- 2.11.4.GIT