summaryrefslogtreecommitdiff
path: root/ui/win32
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-12-15 19:07:26 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-12-15 19:07:26 +0000
commitc00a12652fc6d1c4273ba3a66f94862cf6512443 (patch)
tree40b0178be13da876fad8f07461456874cdc338e9 /ui/win32
parentaae72004b350a1d217a7a751ae583347e8436f43 (diff)
downloadwireshark-c00a12652fc6d1c4273ba3a66f94862cf6512443.tar.gz
Fix warning found by doxygen
svn path=/trunk/; revision=54130
Diffstat (limited to 'ui/win32')
-rw-r--r--ui/win32/file_dlg_win32.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/ui/win32/file_dlg_win32.h b/ui/win32/file_dlg_win32.h
index 94662ee6e6..fd6efc5949 100644
--- a/ui/win32/file_dlg_win32.h
+++ b/ui/win32/file_dlg_win32.h
@@ -34,6 +34,8 @@ extern "C" {
/** Open the "Open" dialog box.
*
* @param h_wnd HWND of the parent window.
+ * @param file_name File name
+ * @param display_filter a display filter
*/
gboolean win32_open_file (HWND h_wnd, GString *file_name, GString *display_filter);
@@ -68,6 +70,7 @@ gboolean win32_save_as_file(HWND h_wnd, capture_file *cf,
/** Open the "Export Specified Packets" dialog box.
*
* @param h_wnd HWND of the parent window.
+ * @param cf capture_file Structure for the capture to be saved
* @param file_name File name. May be empty.
* @param file_type Wiretap file type.
* @param compressed Compress the file with gzip.
@@ -86,12 +89,16 @@ gboolean win32_export_specified_packets_file(HWND h_wnd,
/** Open the "Merge" dialog box.
*
* @param h_wnd HWND of the parent window.
+ * @param file_name File name
+ * @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);
/** Open the "Export" dialog box.
*
* @param h_wnd HWND of the parent window.
+ * @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);
@@ -99,6 +106,7 @@ void win32_export_file (HWND h_wnd, capture_file *cf, export_type_e export_type)
/** Open the "Export raw bytes" dialog box.
*
* @param h_wnd HWND of the parent window.
+ * @param cf capture_file Structure for the capture to be saved
*/
void win32_export_raw_file (HWND h_wnd, capture_file *cf);
@@ -111,6 +119,7 @@ void win32_export_sslkeys_file (HWND h_wnd);
/** Open the "Export Color Filters" dialog box
*
* @param h_wnd HWND of the parent window
+ * @param cf capture_file Structure for the capture to be saved
* @param filter_list the list to export
*/
void win32_export_color_file(HWND h_wnd, capture_file *cf, gpointer filter_list);