Autofooize everything in a much saner way.
[mmediamanager.git] / test / server-app / server-module.c
blob85f537341e6e672b2bf20500b06edd95fbbedc46
1 /* MManager - a Desktop wide manager for multimedia applications.
3 * Copyright (C) 2008 Cosimo Cecchi <cosimoc@gnome.org>
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 * Boston, MA 02111-1307, USA.
21 #include <glib.h>
22 #include <glib-object.h>
24 #include "server-app.h"
25 #include "server-cat.h"
26 #include "server-coll.h"
28 void
29 mm_module_initialize (GTypeModule *gtm)
31 server_app_register_type (gtm);
32 server_cat_register_type (gtm);
33 server_coll_register_type (gtm);
36 void
37 mm_module_shutdown (void)
42 void
43 mm_module_get_types (GType **types)
45 static GType type_list [3];
47 type_list[0] = SERVER_TYPE_APP;
48 type_list[1] = SERVER_TYPE_CAT;
49 type_list[2] = SERVER_TYPE_COLL;
51 *types = type_list;