X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=lib%2Fnotmuch.h;h=24708f3c5947c6819570f493bb249284e40407cc;hp=a8981c5c0e38f1c469feb1aa2689e4eeade1dacf;hb=e9b870b6923afe767a7c9938be24f5390102031a;hpb=499bb78178df86ceae82893fbc272c4dd1870b6c diff --git a/lib/notmuch.h b/lib/notmuch.h index a8981c5c..24708f3c 100644 --- a/lib/notmuch.h +++ b/lib/notmuch.h @@ -889,10 +889,12 @@ notmuch_query_add_tag_exclude (notmuch_query_t *query, const char *tag); * notmuch_query_t *query; * notmuch_threads_t *threads; * notmuch_thread_t *thread; + * notmuch_status_t stat; * * query = notmuch_query_create (database, query_string); * - * for (threads = notmuch_query_search_threads (query); + * for (stat = notmuch_query_search_threads (query, &threads); + * stat == NOTMUCH_STATUS_SUCCESS && * notmuch_threads_valid (threads); * notmuch_threads_move_to_next (threads)) * { @@ -1351,7 +1353,7 @@ notmuch_messages_collect_tags (notmuch_messages_t *messages); * @since libnotmuch 5.2 (notmuch 0.27) */ notmuch_database_t * -notmuch_message_get_database (notmuch_message_t *message); +notmuch_message_get_database (const notmuch_message_t *message); /** * Get the message ID of 'message'. @@ -1400,6 +1402,8 @@ notmuch_message_get_thread_id (notmuch_message_t *message); * If there are no replies to 'message', this function will return * NULL. (Note that notmuch_messages_valid will accept that NULL * value as legitimate, and simply return FALSE for it.) + * + * The returned list will be destroyed when the thread is destroyed. */ notmuch_messages_t * notmuch_message_get_replies (notmuch_message_t *message);