summaryrefslogtreecommitdiff
path: root/ui_util.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2000-01-03 06:59:25 +0000
committerGuy Harris <guy@alum.mit.edu>2000-01-03 06:59:25 +0000
commit4096029a6678887f0e365f65da3aef593226efbe (patch)
tree765db407bb466c2b2ce7c103b504cd8771c04c45 /ui_util.h
parent302c1164834d14e5b239f17b04e41c503c07605b (diff)
downloadwireshark-4096029a6678887f0e365f65da3aef593226efbe.tar.gz
Take the "simple_dialog()" stuff out of "ui_util.h" and "gtk/ui_util.c",
and move it to "simple_dialog.h" and "gtk/simple_dialog.c". svn path=/trunk/; revision=1414
Diffstat (limited to 'ui_util.h')
-rw-r--r--ui_util.h18
1 files changed, 1 insertions, 17 deletions
diff --git a/ui_util.h b/ui_util.h
index 5a25c45704..31d3731c8c 100644
--- a/ui_util.h
+++ b/ui_util.h
@@ -1,7 +1,7 @@
/* ui_util.h
* Definitions for UI utility routines
*
- * $Id: ui_util.h,v 1.2 1999/12/20 06:05:08 guy Exp $
+ * $Id: ui_util.h,v 1.3 2000/01/03 06:59:10 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -40,22 +40,6 @@ void set_main_window_name(gchar *);
pop up the existing one rather than creating a new one. */
void reactivate_window(GtkWidget *);
-/* Dialog type. */
-#define ESD_TYPE_INFO 0
-#define ESD_TYPE_WARN 1
-#define ESD_TYPE_CRIT 2
-
-/* Which buttons to display. */
-#define ESD_BTN_OK 0
-#define ESD_BTN_CANCEL 1
-
-#if __GNUC__ == 2
-void simple_dialog(gint, gint *, gchar *, ...)
- __attribute__((format (printf, 3, 4)));
-#else
-void simple_dialog(gint, gint *, gchar *, ...);
-#endif
-
#ifdef __cplusplus
}
#endif /* __cplusplus */