1 #include "notmuch-client.h"
2 #include "gmime-filter-reply.h"
3 
4 /* Caller is responsible for only calling this once */
5 
6 void
notmuch_client_init(void)7 notmuch_client_init (void)
8 {
9 #if ! GLIB_CHECK_VERSION (2, 35, 1)
10     g_type_init ();
11 #endif
12 
13     g_mime_init ();
14 
15     g_mime_filter_reply_module_init ();
16 
17     talloc_enable_null_tracking ();
18 }
19