home *** CD-ROM | disk | FTP | other *** search
-
-
- // result codes
-
- #define BAD_PARAMS 1001
-
-
-
- // _isavail()
- #define TTS_UNAVAILABLE 0x00
- #define TTS_AVAILABLE 0x01
- #define TTS_DISABLED 0xfd
-
-
- // _begin()
- #define OUT_O_DYNAMIC_WORKSPACE 0x96
- #define IMPLICIT_ACTIVE 0xfe
- /* An implicit transaction was already active, it is now converted
- * into an explicit transaction
- */
- #define EXPLICIT_ACTIVE 0xff
- /* An explicit transaction was already active, it continues unaffected.
- */
-
-
- // _end( nRefNo )
- // #define TTS_DISABLED 0xfd as above
- #define TTS_ENDED_RECORDS_LOCKED 0xfe
- /* can't roll back right now, since those records are locked. very rare */
- #define NO_TRANSACTION 0xff
-
-
- // _abort()
- // #define TTS_DISABLED 0xfd as above
- // #define TTS_ENDED_RECORDS_LOCKED 0xfe as above
- // #define NO_TRANSACTION 0xff as above
-
-
- // _status()
- #define TRANSACTION_NOT_WRITTEN 0xff
- /* the transaction has yet to be written to the disk
- */
-