#ifndef __ARCHIVE_DLG_H #define __ARCHIVE_DLG_H /*------------------------------------------------------------------------- * Copyright (c) 2004 Kenneth W. Sodemann (stufflehead@bigfoot.com) *------------------------------------------------------------------------- * archive_dlg * * Synopsis: * Archive problem reports based on user specified criteria. * * $Id: archive_dlg.h,v 1.1 2004/12/24 01:43:54 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 * *------------------------------------------------------------------------- */ #include #include /*------------------------------------------------------------------------- * Function: destroy_archive_dlg * * Synopsis: * If the archive dialog currently exists, destroy it. * * Inputs: * None. * * Outputs: * None. * * Return Value: * None. * *------------------------------------------------------------------------- */ void destroy_archive_dlg (void); /*------------------------------------------------------------------------- * Function: show_archive_dlg * * Synopsis: * If the archive dialog currently exists, make sure it is visible. * Otherwise, create the archive dialog. * * Inputs: * parent : pointer to the widget set that created this one * conn : pointer to the database connection * * Outputs: * None. * * Return Value: * None. * *------------------------------------------------------------------------- */ void show_archive_dlg (GtkWidget *parent, PGconn *conn); #endif