aboutsummaryrefslogtreecommitdiffstats
path: root/ui/win32/file_dlg_win32.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/win32/file_dlg_win32.h')
-rw-r--r--ui/win32/file_dlg_win32.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/ui/win32/file_dlg_win32.h b/ui/win32/file_dlg_win32.h
index e80c944de5..971cf11bd8 100644
--- a/ui/win32/file_dlg_win32.h
+++ b/ui/win32/file_dlg_win32.h
@@ -48,7 +48,7 @@ void revert_thread_per_monitor_v2_awareness(HANDLE context);
* @param type File type
* @param display_filter a display filter
*/
-gboolean win32_open_file (HWND h_wnd, GString *file_name, unsigned int *type, GString *display_filter);
+gboolean win32_open_file (HWND h_wnd, const wchar_t *title, GString *file_name, unsigned int *type, GString *display_filter);
/** Verify that our proposed capture file format supports comments. If it can't
* ask the user what to do and return his or her response.
@@ -73,7 +73,7 @@ check_savability_t win32_check_save_as_with_comments(HWND parent, capture_file *
*
* @return TRUE if packets were discarded when saving, FALSE otherwise
*/
-gboolean win32_save_as_file(HWND h_wnd, capture_file *cf,
+gboolean win32_save_as_file(HWND h_wnd, const wchar_t *title, capture_file *cf,
GString *file_name, int *file_type,
wtap_compression_type *compression_type,
gboolean must_support_comments);
@@ -90,6 +90,7 @@ 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,
+ const wchar_t *title,
capture_file *cf,
GString *file_name,
int *file_type,
@@ -104,7 +105,7 @@ gboolean win32_export_specified_packets_file(HWND h_wnd,
* @param display_filter a display filter
* @param merge_type type of merge
*/
-gboolean win32_merge_file (HWND h_wnd, GString *file_name, GString *display_filter, int *merge_type);
+gboolean win32_merge_file (HWND h_wnd, const wchar_t *title, GString *file_name, GString *display_filter, int *merge_type);
/** Open the "Export" dialog box.
*
@@ -112,7 +113,7 @@ gboolean win32_merge_file (HWND h_wnd, GString *file_name, GString *display_filt
* @param cf capture_file Structure for the capture to be saved
* @param export_type The export type.
*/
-void win32_export_file (HWND h_wnd, capture_file *cf, export_type_e export_type);
+void win32_export_file (HWND h_wnd, const wchar_t *title, capture_file *cf, export_type_e export_type);
/** Open the "Save As" dialog box for stats_tree statistics window.
*