1 /* GObject - GLib Type, Object, Parameter and Signal Library 2 * testmodule.h: Dummy dynamic type module 3 * Copyright (C) 2003 Red Hat, Inc. 4 * 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.1 of the License, or (at your option) any later version. 9 * 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. 14 * 15 * You should have received a copy of the GNU Lesser General Public 16 * License along with this library; if not, see <http://www.gnu.org/licenses/>. 17 */ 18 19 #ifndef __TEST_MODULE_H__ 20 #define __TEST_MODULE_H__ 21 22 #include <glib-object.h> 23 24 G_BEGIN_DECLS 25 26 typedef struct _TestModule TestModule; 27 typedef struct _TestModuleClass TestModuleClass; 28 29 #define TEST_TYPE_MODULE (test_module_get_type ()) 30 #define TEST_MODULE(module) (G_TYPE_CHECK_INSTANCE_CAST ((module), TEST_TYPE_MODULE, TestModule)) 31 #define TEST_MODULE_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), TEST_TYPE_MODULE, TestModuleClass)) 32 #define TEST_IS_MODULE(module) (G_TYPE_CHECK_INSTANCE_TYPE ((module), TEST_TYPE_MODULE)) 33 #define TEST_IS_MODULE_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), TEST_TYPE_MODULE)) 34 #define TEST_MODULE_GET_CLASS(module) (G_TYPE_INSTANCE_GET_CLASS ((module), TEST_TYPE_MODULE, TestModuleClass)) 35 36 typedef void (*TestModuleRegisterFunc) (GTypeModule *module); 37 38 struct _TestModule 39 { 40 GTypeModule parent_instance; 41 42 TestModuleRegisterFunc register_func; 43 }; 44 45 struct _TestModuleClass 46 { 47 GTypeModuleClass parent_class; 48 }; 49 50 GType test_module_get_type (void); 51 GTypeModule *test_module_new (TestModuleRegisterFunc register_func); 52 53 G_END_DECLS 54 55 #endif /* __TEST_MODULE_H__ */ 56