Next: po_message_t API, Previous: po_file_t API, Up: Writing your own programs that process PO files [Contents][Index]
This is a pointer type that refers to an iterator that produces a sequence of messages.
The po_message_iterator
returns an iterator that will produce the
messages of file that belong to the given domain. If domain
is NULL
, the default domain is used instead. To list the messages,
use the function po_next_message
repeatedly.
The po_message_iterator_free
function frees an iterator previously
allocated through the po_message_iterator
function.
The po_next_message
function returns the next message from
iterator and advances the iterator. It returns NULL
when the
iterator has reached the end of its message list.