X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=notmuch.h;h=bf390beaff52e6f6959d57d76b126b47f64e1bd4;hp=b4ff53e34b223e03b3ad94570c85b0e949b0c036;hb=c12823648ee84b4748e0e9f0cd97f7264911b589;hpb=94f01d9de914b609e1f02385092b82fd61ca73b5 diff --git a/notmuch.h b/notmuch.h index b4ff53e3..bf390bea 100644 --- a/notmuch.h +++ b/notmuch.h @@ -458,6 +458,20 @@ notmuch_thread_results_destroy (notmuch_thread_results_t *results); const char * notmuch_thread_get_thread_id (notmuch_thread_t *thread); +/* Get the subject of 'thread' + * + * The subject is taken from the first message (according to the query + * order---see notmuch_query_set_sort) in the query results that + * belongs to this thread. + * + * The returned string belongs to 'thread' and as such, should not be + * modified by the caller and will only be valid for as long as the + * thread is valid, (which is until notmuch_thread_destroy or until + * the query from which it derived is destroyed). + */ +const char * +notmuch_thread_get_subject (notmuch_thread_t *thread); + /* Get the tags for 'thread', returning a notmuch_tags_t object which * can be used to iterate over all tags. *