diff options
author | WonYoung Choi <wy80.choi@samsung.com> | 2012-09-07 15:20:49 +0900 |
---|---|---|
committer | WonYoung Choi <wy80.choi@samsung.com> | 2012-09-07 15:20:49 +0900 |
commit | 53d54a0adec928379afb9ffea5a03969302fb0b5 (patch) | |
tree | 6110b100d7cdac9d564926f6472111f010d5f17d | |
parent | 8951750c5a96e24dd7a117a645a3d69214159f4c (diff) | |
download | messages-53d54a0adec928379afb9ffea5a03969302fb0b5.tar.gz messages-53d54a0adec928379afb9ffea5a03969302fb0b5.tar.bz2 messages-53d54a0adec928379afb9ffea5a03969302fb0b5.zip |
Add descriptions of messages_recipient_type_e type.
-rw-r--r-- | include/messages_types.h | 8 |
1 files changed, 4 insertions, 4 deletions
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; /** |