aboutsummaryrefslogtreecommitdiffstats
path: root/ui/win32/file_dlg_win32.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2013-10-11 17:20:50 +0000
committerGerald Combs <gerald@wireshark.org>2013-10-11 17:20:50 +0000
commit259768dc1ae8894c1ae758c762389e3926be4bfb (patch)
tree302f8e99883053a6fad30cd5fb114ffc191517c8 /ui/win32/file_dlg_win32.h
parentee5397d832bc1b19791ffe1280621a6b327cae23 (diff)
Remove GTK+ and global cfile dependencies from file_dlg_win32.c.
Move the declaration of set_last_open_dir() to ui/util.h. It still has separate GTK+ and Qt implemenations. We might want to move it to ui/util.c at some point. Remove a lot of unnecessary GTK+ includes. Remove most of the references to the global cfile while we're at it. svn path=/trunk/; revision=52542
Diffstat (limited to 'ui/win32/file_dlg_win32.h')
-rw-r--r--ui/win32/file_dlg_win32.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/ui/win32/file_dlg_win32.h b/ui/win32/file_dlg_win32.h
index 3c3b07508f..a317f49d9e 100644
--- a/ui/win32/file_dlg_win32.h
+++ b/ui/win32/file_dlg_win32.h
@@ -75,7 +75,9 @@ gboolean win32_save_as_file(HWND h_wnd, capture_file *cf,
*
* @return TRUE if packets were discarded when saving, FALSE otherwise
*/
-gboolean win32_export_specified_packets_file(HWND h_wnd, GString *file_name,
+gboolean win32_export_specified_packets_file(HWND h_wnd,
+ capture_file *cf,
+ GString *file_name,
int *file_type,
gboolean *compressed,
packet_range_t *range);
@@ -98,7 +100,7 @@ void win32_export_file (HWND h_wnd, capture_file *cf, export_type_e export_type)
*
* @param h_wnd HWND of the parent window.
*/
-void win32_export_raw_file (HWND h_wnd);
+void win32_export_raw_file (HWND h_wnd, capture_file *cf);
/** Open the "Export SSL Session Keys" dialog box.
*
@@ -111,7 +113,7 @@ void win32_export_sslkeys_file (HWND h_wnd);
* @param h_wnd HWND of the parent window
* @param filter_list the list to export
*/
-void win32_export_color_file(HWND h_wnd, gpointer filter_list);
+void win32_export_color_file(HWND h_wnd, capture_file *cf, gpointer filter_list);
/** Open the "Import Color Filters" dialog box
*