Update Polish help translation
[empathy-mirror.git] / extensions / extensions-cli.c
blob982edf3d049b210a30e13fa4c03cac62afa32802
1 #include "config.h"
3 #include "extensions.h"
5 #include <telepathy-glib/proxy-subclass.h>
7 static void _emp_ext_register_dbus_glib_marshallers (void);
9 /* include auto-generated stubs for client-specific code */
10 #include "_gen/cli-misc-body.h"
11 #include "_gen/register-dbus-glib-marshallers-body.h"
13 static gpointer
14 emp_cli_once (gpointer data)
16 _emp_ext_register_dbus_glib_marshallers ();
18 tp_proxy_init_known_interfaces ();
20 tp_proxy_or_subclass_hook_on_interface_add (TP_TYPE_PROXY,
21 emp_cli_misc_add_signals);
23 return NULL;
26 void
27 emp_cli_init (void)
29 static GOnce once = G_ONCE_INIT;
31 g_once (&once, emp_cli_once, NULL);