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