diff options
author | Guy Harris <guy@alum.mit.edu> | 2004-07-25 08:02:06 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2004-07-25 08:02:06 +0000 |
commit | b5c1e171b476d6f90bd2926c1fc7c606f9d4e9a3 (patch) | |
tree | 017a1cd7746d565e747b5bcfd6f4f78b1e0e973f /simple_dialog.h | |
parent | 88d357fe042eb9f5c06b6ebc85e27527a80f0239 (diff) | |
download | wireshark-b5c1e171b476d6f90bd2926c1fc7c606f9d4e9a3.tar.gz wireshark-b5c1e171b476d6f90bd2926c1fc7c606f9d4e9a3.tar.bz2 wireshark-b5c1e171b476d6f90bd2926c1fc7c606f9d4e9a3.zip |
Fix the declarations for "simple_dialog()" and "vsimple_dialog()" used
for non-GCC 2.x compilers to match their definitions.
svn path=/trunk/; revision=11511
Diffstat (limited to 'simple_dialog.h')
-rw-r--r-- | simple_dialog.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/simple_dialog.h b/simple_dialog.h index 6120220c19..d5debc33c3 100644 --- a/simple_dialog.h +++ b/simple_dialog.h @@ -101,7 +101,7 @@ extern gpointer vsimple_dialog(ESD_TYPE_E type, gint btn_mask, * @param ... printf like parameters * @return the newly created dialog */ -extern gpointer simple_dialog(gint type, gint btn_mask, +extern gpointer simple_dialog(ESD_TYPE_E type, gint btn_mask, const gchar *msg_format, ...); /** Create and show a simple dialog using a va_list. * @@ -111,7 +111,7 @@ extern gpointer simple_dialog(gint type, gint btn_mask, * @param ap parameters * @return the newly created dialog */ -extern gpointer vsimple_dialog(gint type, gint btn_mask, +extern gpointer vsimple_dialog(ESD_TYPE_E type, gint btn_mask, const gchar *msg_format, va_list ap); #endif |