This commit is contained in:
Arthur Britto
2012-12-23 16:05:20 -08:00
parent 0af0a7b7b3
commit adb9561c2c

View File

@@ -133,7 +133,7 @@ enum TER // aka TransactionEngineResult
#define isTerRetry(x) ((x) >= terRETRY && (x) < tesSUCCESS)
#define isTepSuccess(x) ((x) >= tesSUCCESS)
#define isTepPartial(x) ((x) >= tepPATH_PARTIAL && (x) < tecCLAIM)
#define isTecClaim(x) ((x) >= tepCLAIM)
#define isTecClaim(x) ((x) >= tecCLAIM)
bool transResultInfo(TER terCode, std::string& strToken, std::string& strHuman);
std::string transToken(TER terCode);