sl@0: /* GObject - GLib Type, Object, Parameter and Signal Library sl@0: * testmodule.h: Dummy dynamic type module sl@0: * Copyright (C) 2003 Red Hat, Inc. sl@0: * sl@0: * This library is free software; you can redistribute it and/or sl@0: * modify it under the terms of the GNU Lesser General Public sl@0: * License as published by the Free Software Foundation; either sl@0: * version 2 of the License, or (at your option) any later version. sl@0: * sl@0: * This library is distributed in the hope that it will be useful, sl@0: * but WITHOUT ANY WARRANTY; without even the implied warranty of sl@0: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU sl@0: * Lesser General Public License for more details. sl@0: * sl@0: * You should have received a copy of the GNU Lesser General Public sl@0: * License along with this library; if not, write to the sl@0: * Free Software Foundation, Inc., 59 Temple Place - Suite 330, sl@0: * Boston, MA 02111-1307, USA. sl@0: */ sl@0: sl@0: #ifndef __TEST_MODULE_H__ sl@0: #define __TEST_MODULE_H__ sl@0: sl@0: #include sl@0: sl@0: G_BEGIN_DECLS sl@0: sl@0: typedef struct _TestModule TestModule; sl@0: typedef struct _TestModuleClass TestModuleClass; sl@0: sl@0: #define TEST_TYPE_MODULE (test_module_get_type ()) sl@0: #define TEST_MODULE(module) (G_TYPE_CHECK_INSTANCE_CAST ((module), TEST_TYPE_MODULE, TestModule)) sl@0: #define TEST_MODULE_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), TEST_TYPE_MODULE, TestModuleClass)) sl@0: #define TEST_IS_MODULE(module) (G_TYPE_CHECK_INSTANCE_TYPE ((module), TEST_TYPE_MODULE)) sl@0: #define TEST_IS_MODULE_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), TEST_TYPE_MODULE)) sl@0: #define TEST_MODULE_GET_CLASS(module) (G_TYPE_INSTANCE_GET_CLASS ((module), TEST_TYPE_MODULE, TestModuleClass)) sl@0: sl@0: typedef void (*TestModuleRegisterFunc) (GTypeModule *module); sl@0: sl@0: struct _TestModule sl@0: { sl@0: GTypeModule parent_instance; sl@0: sl@0: TestModuleRegisterFunc register_func; sl@0: }; sl@0: sl@0: struct _TestModuleClass sl@0: { sl@0: GTypeModuleClass parent_class; sl@0: }; sl@0: sl@0: GType test_module_get_type (void); sl@0: GTypeModule *test_module_new (TestModuleRegisterFunc register_func); sl@0: sl@0: G_END_DECLS sl@0: sl@0: #endif /* __TEST_MODULE_H__ */