/* $Id$ * Include file for UDP Gateway utility startup_chkconfig scripts inheritance support * Copyright (C) 2004 Jan Kratochvil * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; exactly version 2 of June 1991 is required * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef _UDPGATE_STARTUP_CHKCONFIG_H #define _UDPGATE_STARTUP_CHKCONFIG_H 1 #include #include #include "startup.h" G_BEGIN_DECLS #define UDPGATE_TYPE_STARTUP_CHKCONFIG (udpgate_startup_chkconfig_get_type()) #define UDPGATE_STARTUP_CHKCONFIG(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),UDPGATE_TYPE_STARTUP_CHKCONFIG,UdpgateStartupChkconfig)) #define UDPGATE_STARTUP_CHKCONFIG_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),UDPGATE_TYPE_STARTUP_CHKCONFIG,UdpgateStartupChkconfigClass)) #define UDPGATE_IS_STARTUP_CHKCONFIG(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),UDPGATE_TYPE_STARTUP_CHKCONFIG)) #define UDPGATE_IS_STARTUP_CHKCONFIG_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),UDPGATE_TYPE_STARTUP_CHKCONFIG)) #define UDPGATE_STARTUP_CHKCONFIG_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj),UDPGATE_TYPE_STARTUP_CHKCONFIG,UdpgateStartupChkconfigClass)) typedef struct _UdpgateStartupChkconfig UdpgateStartupChkconfig; typedef struct _UdpgateStartupChkconfigClass UdpgateStartupChkconfigClass; struct _UdpgateStartupChkconfig { UdpgateStartup parent_instance; }; struct _UdpgateStartupChkconfigClass { UdpgateStartupClass parent_class; }; GType udpgate_startup_chkconfig_get_type(void) G_GNUC_CONST; UdpgateStartupChkconfig *udpgate_startup_chkconfig_new(void); G_END_DECLS #endif /* _UDPGATE_STARTUP_CHKCONFIG_H */