mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
lib: Document extent of some return values
This documents the extent of the notmuch_messages_t* pointers returned by notmuch_thread_get_toplevel_messages and notmuch_thread_get_messages.
This commit is contained in:
parent
a24cd45568
commit
215a8dc29c
1 changed files with 4 additions and 0 deletions
|
@ -794,12 +794,16 @@ notmuch_thread_get_total_messages (notmuch_thread_t *thread);
|
|||
* This iterator will not necessarily iterate over all of the messages
|
||||
* in the thread. It will only iterate over the messages in the thread
|
||||
* which are not replies to other messages in the thread.
|
||||
*
|
||||
* The returned list will be destroyed when the thread is destroyed.
|
||||
*/
|
||||
notmuch_messages_t *
|
||||
notmuch_thread_get_toplevel_messages (notmuch_thread_t *thread);
|
||||
|
||||
/* Get a notmuch_thread_t iterator for all messages in 'thread' in
|
||||
* oldest-first order.
|
||||
*
|
||||
* The returned list will be destroyed when the thread is destroyed.
|
||||
*/
|
||||
notmuch_messages_t *
|
||||
notmuch_thread_get_messages (notmuch_thread_t *thread);
|
||||
|
|
Loading…
Reference in a new issue