From: Dariusz Michaluk Date: Mon, 30 May 2016 13:16:38 +0000 (+0200) Subject: ACR: yaca_error.h doxygen fixes X-Git-Tag: accepted/tizen/common/20160810.161523~96 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0559d632bcd7a31c4410f3568e7a93b7deeeaeec;p=platform%2Fcore%2Fsecurity%2Fyaca.git ACR: yaca_error.h doxygen fixes Change-Id: I2555c31e6890d2d184c2bc1e454f18271f26db6b --- diff --git a/api/yaca/yaca_error.h b/api/yaca/yaca_error.h index aca3d2d..edbbfe7 100755 --- a/api/yaca/yaca_error.h +++ b/api/yaca/yaca_error.h @@ -17,7 +17,7 @@ */ /** - * @file error.h + * @file yaca_error.h * @brief */ @@ -45,12 +45,18 @@ extern "C" { * @since_tizen 3.0 */ typedef enum { + /** Successful */ YACA_ERROR_NONE = TIZEN_ERROR_NONE, + /** Invalid function parameter */ YACA_ERROR_INVALID_ARGUMENT = TIZEN_ERROR_INVALID_PARAMETER, + /** Out of memory */ YACA_ERROR_OUT_OF_MEMORY = TIZEN_ERROR_OUT_OF_MEMORY, + /** Internal error */ YACA_ERROR_INTERNAL = TIZEN_ERROR_YACA | 0x01, + /** Data mismatch */ YACA_ERROR_DATA_MISMATCH = TIZEN_ERROR_YACA | 0x02, + /** Invalid password */ YACA_ERROR_PASSWORD_INVALID = TIZEN_ERROR_YACA | 0x03 } yaca_error_e;