aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/e-shell.c')
-rw-r--r--shell/e-shell.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/shell/e-shell.c b/shell/e-shell.c
index cd4be67bc6..e78a30e876 100644
--- a/shell/e-shell.c
+++ b/shell/e-shell.c
@@ -1,3 +1,5 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
+
/*
* E-shell.c: Shell object for Evolution
*
@@ -123,6 +125,17 @@ EShell_cmd_new (PortableServer_Servant servant,
}
}
+static void
+EShell_register_service (PortableServer_Servant servant,
+ const Evolution_Shell_ServiceType type,
+ const CORBA_char *uri,
+ CORBA_Environment *ev)
+{
+ printf ("toto\n");
+
+}
+
+
static POA_Evolution_Shell__epv *
e_shell_get_epv (void)
{
@@ -131,6 +144,7 @@ e_shell_get_epv (void)
epv = g_new0 (POA_Evolution_Shell__epv, 1);
epv->new = EShell_cmd_new;
+ epv->register_service = EShell_register_service;
return epv;
}