Added some of the doc support files to EXTRA_DIST
[geda-gaf/whiteaudio.git] / libgeda / src / libgeda.c
blob809a1c4ab042d797750cfab4644e319cb7c12ee7
1 /* gEDA - GPL Electronic Design Automation
2 * libgeda - gEDA's library
3 * Copyright (C) 1998, 1999, 2000 Kazu Hirata / Ales Hvezda
4 * Copyright (C) 1998-2008 Ales Hvezda
5 * Copyright (C) 1998-2008 gEDA Contributors (see ChangeLog for details)
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA
21 #include <config.h>
23 #include <stdio.h>
24 #ifdef HAVE_STRING_H
25 #include <string.h>
26 #endif
27 #ifdef HAVE_STRARG_H
28 #include <stdarg.h>
29 #endif
30 #ifdef HAVE_STDLIB_H
31 #include <stdlib.h>
32 #endif
34 #include "libgeda_priv.h"
36 #ifdef HAVE_LIBDMALLOC
37 #include <dmalloc.h>
38 #endif
40 /*! \brief Perform runtime initialization of libgeda library.
41 * \par Function Description
42 * This function is responsible for making sure that any runtime
43 * initialization is done for all the libgeda routines. It should
44 * be called before any other libgeda functions are called.
47 void libgeda_init(void)
49 /* Initialise gettext */
50 bindtextdomain (LIBGEDA_GETTEXT_DOMAIN, LOCALEDIR);
51 bind_textdomain_codeset(LIBGEDA_GETTEXT_DOMAIN, "UTF-8");
53 /* Initialise gobject */
54 g_type_init ();
56 s_clib_init();
57 s_slib_init();
58 s_menu_init();
59 s_attrib_init();
60 s_color_init();
62 o_text_init();
64 g_register_libgeda_funcs();
65 g_register_libgeda_vars();
67 g_init_object_smob();
68 g_init_attrib_smob();
69 g_init_page_smob();