filename | src/gtkui/gtkui.h |
changeset | 1124:aacaae9812ea |
prev | 1109:700c5ab26a63 |
author | nkeynes |
date | Sun Feb 12 16:30:26 2012 +1000 (10 years ago) |
permissions | -rw-r--r-- |
last change | Add -Werror for mregparm check, so it actually fails if mregparm isn't accepted |
file | annotate | diff | log | raw |
1.1 --- a/src/gtkui/gtkui.h Thu Jun 10 22:13:16 2010 +10001.2 +++ b/src/gtkui/gtkui.h Sun Feb 12 16:30:26 2012 +10001.3 @@ -93,11 +93,11 @@1.4 gchar *open_file_dialog( const char *title, const char *pattern, const char *patname,1.5 int initial_dir_key );1.6 gchar *save_file_dialog( const char *title, const char *pattern, const char *patname,1.7 - int initial_dir_key );1.8 + const char *mandatory_ext, int initial_dir_key );1.9 void open_file_dialog_cb( const char *title, file_callback_t action, const char *pattern, const char *patname,1.10 int initial_dir_key );1.11 void save_file_dialog_cb( const char *title, file_callback_t action, const char *pattern, const char *patname,1.12 - int initial_dir_key );1.13 + const char *mandatory_ext, int initial_dir_key );1.14 gboolean gtk_gui_gdrom_mount_image( const char *filename );1.15 /**1.16 * Extract the keyval of the key event if no modifier keys were pressed -
.