diff options
author | nobody <nobody@localhost> | 2000-03-29 08:30:07 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2000-03-29 08:30:07 +0800 |
commit | b7cd96d0dd7466c74efbc647601b4fd867bc9004 (patch) | |
tree | 828b9805c964e1d00a9ba6be3c1dc64f78be9523 /wombat/wombat.c | |
parent | bce1144ad7cd318cb193eb39aecc42cf8a87358e (diff) | |
download | gsoc2013-evolution-help.tar gsoc2013-evolution-help.tar.gz gsoc2013-evolution-help.tar.bz2 gsoc2013-evolution-help.tar.lz gsoc2013-evolution-help.tar.xz gsoc2013-evolution-help.tar.zst gsoc2013-evolution-help.zip |
This commit was manufactured by cvs2svn to create tag 'help'.help
svn path=/tags/help/; revision=2234
Diffstat (limited to 'wombat/wombat.c')
-rw-r--r-- | wombat/wombat.c | 76 |
1 files changed, 0 insertions, 76 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; -} |