Function
EBookContactsbook_util_foreach_address
since: 3.44
Declaration [src]
void
e_book_util_foreach_address (
const gchar* email_address,
GHRFunc func,
gpointer user_data
)
Description [src]
Parses the email_address and calls func for each found address.
The first parameter of the func is the name, the second parameter
of the func is the email, the third parameters of the func is the user_data. The func returns TRUE, to continue processing.
Available since: 3.44
Parameters
email_address-
Type:
const gchar*One or more email addresses as string.
The data is owned by the caller of the function. The value is a NUL terminated UTF-8 string. func-
Type:
GHRFuncA function to call for each email
user_data(closure func): user data passed tofunc. user_data-
Type:
gpointerNo description available.
The argument can be NULL.The data is owned by the caller of the function.