dbs.idl: Add missing DBROWSTATUSENUM values.

oldstable
Alistair Leslie-Hughes 2013-06-05 09:28:47 +10:00 committed by Alexandre Julliard
parent 8c23dc98b3
commit d25be83c0a
1 changed files with 20 additions and 3 deletions

View File

@ -500,9 +500,26 @@ typedef DWORD DBROWSTATUS;
enum DBROWSTATUSENUM
{
DBROWSTATUS_S_OK = 0,
/* FIXME */
DBROWSTATUS_E_FAIL = 19,
DBROWSTATUS_S_OK,
DBROWSTATUS_S_LOCKUPGRADED,
DBROWSTATUS_S_MULTIPLECHANGES,
DBROWSTATUS_S_PENDINGCHANGES,
DBROWSTATUS_E_CANCELED,
DBROWSTATUS_E_CANTLOCKROW,
DBROWSTATUS_E_CANTRELEASE,
DBROWSTATUS_E_CONCURRENCYVIOLATION,
DBROWSTATUS_E_DELETED,
DBROWSTATUS_E_PENDINGINSERT,
DBROWSTATUS_E_NEWLYINSERTED,
DBROWSTATUS_E_INTEGRITYVIOLATION,
DBROWSTATUS_E_INVALID,
DBROWSTATUS_E_MAXPENDCHANGESEXCEEDED,
DBROWSTATUS_E_OBJECTOPEN,
DBROWSTATUS_E_OUTOFMEMORY,
DBROWSTATUS_E_PERMISSIONDENIED,
DBROWSTATUS_E_LIMITREACHED,
DBROWSTATUS_E_SCHEMAVIOLATION,
DBROWSTATUS_E_FAIL,
};