blob: 98a17447885152c4b9ac094542b19570d2eb1b53 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include "extensions.h"
#include <telepathy-glib/proxy-subclass.h>
static void _emp_ext_register_dbus_glib_marshallers (void);
/* include auto-generated stubs for client-specific code */
#include "_gen/signals-marshal.h"
#include "_gen/cli-misc-body.h"
#include "_gen/register-dbus-glib-marshallers-body.h"
void
emp_cli_init (void)
{
_emp_ext_register_dbus_glib_marshallers ();
tp_proxy_or_subclass_hook_on_interface_add (TP_TYPE_PROXY,
emp_cli_misc_add_signals);
}
|