#ifndef __ABOUT_DLG_H #define __ABOUT_DLG_H /*------------------------------------------------------------------------- * Copyright (c) 2001-2002 Kenneth W. Sodemann (stufflehead@bigfoot.com) *------------------------------------------------------------------------- * about_dlg * * Synopsis: * PRepS' obligatory about dialog * * $Id: about_dlg.h,v 1.2 2002/01/05 17:43:51 stuffle Exp $ * * 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; either version 2 of the License, or * (at your option) any later version. * * 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 * Free Software Foundation, Inc. * 59 Temple Place, Suite 330 * Boston, MA 02111-1307 USA * *------------------------------------------------------------------------- */ /*! \file about_dlg.h \brief Create and show the about dialog box. \author Kenneth W. Sodemann $Date: 2002/01/05 17:43:51 $ $Revision: 1.2 $ */ #include /*! \fn show_about_dlg \brief Show the about dialog box. Show the about dialog box. The about dialog is shown modelessly. If the box is already being shown, just make sure it is visable rather than showing it again. */ void show_about_dlg (GtkWidget *parent); #endif