aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/about_dlg.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-05-21 08:44:45 +0000
committerGuy Harris <guy@alum.mit.edu>2004-05-21 08:44:45 +0000
commit466ffc89778f751bfdbe15ef72a71cafc1401e5b (patch)
treec519004125eafe9c4fdd1c2398f1d5c0c234fc57 /gtk/about_dlg.h
parentebbebf17050e4b4fd0ed092e29db7b20ec44d674 (diff)
downloadwireshark-466ffc89778f751bfdbe15ef72a71cafc1401e5b.tar.gz
wireshark-466ffc89778f751bfdbe15ef72a71cafc1401e5b.tar.bz2
wireshark-466ffc89778f751bfdbe15ef72a71cafc1401e5b.zip
Now that the "About" dialog box's code is in "gtk/about_dlg.c", move the
"create an About dialog" function's declaration to "gtk/about_dlg.h". svn path=/trunk/; revision=10941
Diffstat (limited to 'gtk/about_dlg.h')
-rw-r--r--gtk/about_dlg.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/gtk/about_dlg.h b/gtk/about_dlg.h
new file mode 100644
index 0000000000..2bf7480baf
--- /dev/null
+++ b/gtk/about_dlg.h
@@ -0,0 +1,30 @@
+/* about_dlg.h
+ * Declarations of routines for the "About" dialog
+ *
+ * $Id: about_dlg.h,v 1.1 2004/05/21 08:44:45 guy Exp $
+ *
+ * Ethereal - Network traffic analyzer
+ * By Gerald Combs <gerald@ethereal.com>
+ * Copyright 1998 Gerald Combs
+ *
+ * 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 the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __ABOUT_DLG_H__
+#define __ABOUT_DLG_H__
+
+void about_ethereal_cb( GtkWidget *, gpointer);
+
+#endif /* __ABOUT_DLG_H__ */