From 0258a525f6e096c48d90c0a651a0ec74dcbff8c5 Mon Sep 17 00:00:00 2001 From: djcb Date: Sun, 1 Jan 2012 18:18:24 +0200 Subject: [PATCH] * mu-msg: added MU_MSG_CONTACT_TYPE_ALL to get all contacts in a message --- src/mu-msg.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/mu-msg.h b/src/mu-msg.h index b17ef618..1b672b23 100644 --- a/src/mu-msg.h +++ b/src/mu-msg.h @@ -419,6 +419,9 @@ enum _MuMsgContactType { /* Reply-To:? */ }; typedef guint MuMsgContactType; +/* not a 'real' contact type */ +#define MU_MSG_CONTACT_TYPE_ALL (MU_MSG_CONTACT_TYPE_NUM + 1) + #define mu_msg_contact_type_is_valid(MCT)\ ((MCT) < MU_MSG_CONTACT_TYPE_NUM)