/* $Id$ * Include file for UDP Gateway utility startup_debian 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_DEBIAN_H #define _UDPGATE_STARTUP_DEBIAN_H 1 #include #include #include "startup.h" G_BEGIN_DECLS #define UDPGATE_TYPE_STARTUP_DEBIAN (udpgate_startup_debian_get_type()) #define UDPGATE_STARTUP_DEBIAN(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),UDPGATE_TYPE_STARTUP_DEBIAN,UdpgateStartupDebian)) #define UDPGATE_STARTUP_DEBIAN_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),UDPGATE_TYPE_STARTUP_DEBIAN,UdpgateStartupDebianClass)) #define UDPGATE_IS_STARTUP_DEBIAN(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),UDPGATE_TYPE_STARTUP_DEBIAN)) #define UDPGATE_IS_STARTUP_DEBIAN_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),UDPGATE_TYPE_STARTUP_DEBIAN)) #define UDPGATE_STARTUP_DEBIAN_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj),UDPGATE_TYPE_STARTUP_DEBIAN,UdpgateStartupDebianClass)) typedef struct _UdpgateStartupDebian UdpgateStartupDebian; typedef struct _UdpgateStartupDebianClass UdpgateStartupDebianClass; struct _UdpgateStartupDebian { UdpgateStartup parent_instance; }; struct _UdpgateStartupDebianClass { UdpgateStartupClass parent_class; }; GType udpgate_startup_debian_get_type(void) G_GNUC_CONST; UdpgateStartupDebian *udpgate_startup_debian_new(void); G_END_DECLS #endif /* _UDPGATE_STARTUP_DEBIAN_H */