summaryrefslogtreecommitdiff
path: root/extensions/extensions-cli.c
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2013-11-04 12:33:32 +0000
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2013-11-04 12:33:32 +0000
commitdc2881155320bf12b3da69f72fe7ee44696602ff (patch)
tree6f7108876f456a196eea1ff37f30d6e01716e3cc /extensions/extensions-cli.c
parentc455172a97b0b49418fd2fa1e7bd5c6e0a118541 (diff)
downloadtelepathy-logger-next.tar.gz
This branch has been merged into telepathy-glibnext
Replace the entire source tree with a message indicating where to go.
Diffstat (limited to 'extensions/extensions-cli.c')
-rw-r--r--extensions/extensions-cli.c33
1 files changed, 0 insertions, 33 deletions
diff --git a/extensions/extensions-cli.c b/extensions/extensions-cli.c
deleted file mode 100644
index 7fd5c86..0000000
--- a/extensions/extensions-cli.c
+++ /dev/null
@@ -1,33 +0,0 @@
-#include "config.h"
-
-#include "extensions.h"
-
-#include <telepathy-glib/telepathy-glib.h>
-#include <telepathy-glib/proxy-subclass.h>
-
-static void _tpl_ext_register_dbus_glib_marshallers (void);
-
-/* include auto-generated stubs for client-specific code */
-#include "_gen/cli-misc-body.h"
-#include "_gen/register-dbus-glib-marshallers-body.h"
-
-static gpointer
-tpl_cli_once (gpointer data)
-{
- _tpl_ext_register_dbus_glib_marshallers ();
-
- tp_proxy_init_known_interfaces ();
-
- tp_proxy_or_subclass_hook_on_interface_add (TP_TYPE_PROXY,
- tpl_cli_misc_add_signals);
-
- return NULL;
-}
-
-void
-tpl_cli_init (void)
-{
- static GOnce once = G_ONCE_INIT;
-
- g_once (&once, tpl_cli_once, NULL);
-}