diff options
Diffstat (limited to 'wombat')
-rw-r--r-- | wombat/wombat.c | 76 | ||||
-rw-r--r-- | wombat/wombat.idl | 12 |
2 files changed, 0 insertions, 88 deletions
diff --git a/wombat/wombat.c b/wombat/wombat.c deleted file mode 100644 index e2fc716d51..0000000000 --- a/wombat/wombat.c +++ /dev/null @@ -1,76 +0,0 @@ -/* - * Author: - * Nat Friedman (nat@helixcode.com) - * - * Copyright 2000, Helix Code, Inc. - */ - -#include <config.h> -#include <bonobo.h> -#include <addressbook/backend/pas/pas-book-factory.h> -#include <addressbook/backend/pas/pas-backend-file.h> - -CORBA_Environment ev; -CORBA_ORB orb; - -static void -setup_pas (int argc, char **argv) -{ - static PASBookFactory *factory; - - factory = pas_book_factory_new (); - - pas_book_factory_register_backend ( - factory, "file", pas_backend_file_new); - - pas_book_factory_activate (factory); -} - -static void -setup_pcs (int argc, char **argv) -{ -} - -static void -setup_config (int argc, char **argv) -{ -} - -static void -setup_vfs (int argc, char **argv) -{ - if (!gnome_vfs_init ()) { - g_message ("setup_vfs(): could not initialize GNOME-VFS"); - exit (1); - } -} - -static void -init_bonobo (int argc, char **argv) -{ - CORBA_exception_init (&ev); - - gnome_CORBA_init_with_popt_table ( - "Personal Addressbook Server", "0.0", - &argc, argv, NULL, 0, NULL, GNORBA_INIT_SERVER_FUNC, &ev); - - orb = gnome_CORBA_ORB (); - - if (bonobo_init (orb, NULL, NULL) == FALSE) - g_error (_("Could not initialize Bonobo")); -} - -int -main (int argc, char **argv) -{ - init_bonobo (argc, argv); - setup_vfs (argc, argv); - - setup_pas (argc, argv); - setup_pcs (argc, argv); - setup_config (argc, argv); - - bonobo_main (); - - return 0; -} diff --git a/wombat/wombat.idl b/wombat/wombat.idl deleted file mode 100644 index ab13b2cabf..0000000000 --- a/wombat/wombat.idl +++ /dev/null @@ -1,12 +0,0 @@ -/* - * The Evolution Personal Organization Server. - * - * Copyright 2000, Helix Code, Inc. - */ - -module Evolution { - - interface Config { - - }; -}; |