From: Zofia Abramowska Date: Tue, 26 Aug 2014 12:08:18 +0000 (+0200) Subject: Add additional error code CYNARA_API_CACHE_MISS X-Git-Tag: accepted/tizen/common/20140905.175100~31 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1405e059bac55207021aa796c9ee9cb7b74f107b;p=platform%2Fcore%2Fsecurity%2Fcynara.git Add additional error code CYNARA_API_CACHE_MISS Change-Id: I2f128b28b19956409f0251f725a28a0e8ace2e7d --- diff --git a/src/include/cynara-client-error.h b/src/include/cynara-client-error.h index b4746b8..e5539ea 100644 --- a/src/include/cynara-client-error.h +++ b/src/include/cynara-client-error.h @@ -21,8 +21,8 @@ * @brief This file contains error codes returned by client APIs of Cynara. */ -#ifndef CYNARA_ERROR_H -#define CYNARA_ERROR_H +#ifndef CYNARA_CLIENT_ERROR_H +#define CYNARA_CLIENT_ERROR_H /** * \name Return Codes @@ -45,6 +45,9 @@ /*! \brief service not available */ #define CYNARA_API_SERVICE_NOT_AVAILABLE -4 + +/*! \brief indicating that value is not present in cache */ +#define CYNARA_API_CACHE_MISS -5 /** @}*/ -#endif // CYNARA_ERROR_H +#endif // CYNARA_CLIENT_ERROR_H