From 4c9fe1015c80de497fe930dafc6eed1ecccad1a7 Mon Sep 17 00:00:00 2001 From: Nat Friedman Date: Tue, 28 Mar 2000 21:18:13 +0000 Subject: For matt. svn path=/trunk/; revision=2219 --- wombat/wombat.c | 76 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ wombat/wombat.idl | 12 +++++++++ 2 files changed, 88 insertions(+) create mode 100644 wombat/wombat.c create mode 100644 wombat/wombat.idl diff --git a/wombat/wombat.c b/wombat/wombat.c new file mode 100644 index 0000000000..e2fc716d51 --- /dev/null +++ b/wombat/wombat.c @@ -0,0 +1,76 @@ +/* + * Author: + * Nat Friedman (nat@helixcode.com) + * + * Copyright 2000, Helix Code, Inc. + */ + +#include +#include +#include +#include + +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 new file mode 100644 index 0000000000..ab13b2cabf --- /dev/null +++ b/wombat/wombat.idl @@ -0,0 +1,12 @@ +/* + * The Evolution Personal Organization Server. + * + * Copyright 2000, Helix Code, Inc. + */ + +module Evolution { + + interface Config { + + }; +}; -- cgit v1.2.3