From: WonYoung Choi Date: Fri, 7 Sep 2012 06:20:49 +0000 (+0900) Subject: Add descriptions of messages_recipient_type_e type. X-Git-Tag: 2.0_alpha~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=53d54a0adec928379afb9ffea5a03969302fb0b5;p=platform%2Fcore%2Fapi%2Fmessages.git Add descriptions of messages_recipient_type_e type. --- diff --git a/include/messages_types.h b/include/messages_types.h index b7f10d2..a25b1f0 100644 --- a/include/messages_types.h +++ b/include/messages_types.h @@ -76,10 +76,10 @@ typedef enum { * @brief The recipient type of a message. */ typedef enum { - MESSAGES_RECIPIENT_UNKNOWN = 0, - MESSAGES_RECIPIENT_TO = 1, - MESSAGES_RECIPIENT_CC = 2, - MESSAGES_RECIPIENT_BCC = 3, + MESSAGES_RECIPIENT_UNKNOWN = 0, /**< Unknown */ + MESSAGES_RECIPIENT_TO = 1, /**< The 'To' recipient */ + MESSAGES_RECIPIENT_CC = 2, /**< The 'Cc' (carbon copy) recipient */ + MESSAGES_RECIPIENT_BCC = 3, /**< The 'Bcc' (blind carbon copy) recipient */ } messages_recipient_type_e; /**