aboutsummaryrefslogtreecommitdiffstats
path: root/ui/win32/file_dlg_win32.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2012-07-12 00:04:53 +0000
committerGerald Combs <gerald@wireshark.org>2012-07-12 00:04:53 +0000
commitbdea70585d389c71846104bdd4534ab20bd2e9e2 (patch)
treeb9a0ec8cbe5eafbe51c78d9d2d34ae95d63fbbf2 /ui/win32/file_dlg_win32.h
parentc7c73e44b56459ed32ef8d70abf9a5d038dfab4f (diff)
Use win32_open_file in qtshark on Windows.
svn path=/trunk/; revision=43677
Diffstat (limited to 'ui/win32/file_dlg_win32.h')
-rw-r--r--ui/win32/file_dlg_win32.h16
1 files changed, 12 insertions, 4 deletions
diff --git a/ui/win32/file_dlg_win32.h b/ui/win32/file_dlg_win32.h
index 4e782d596e..5caef67ca8 100644
--- a/ui/win32/file_dlg_win32.h
+++ b/ui/win32/file_dlg_win32.h
@@ -1,4 +1,4 @@
-/* win32_file_dlg.h
+/* file_dlg_win32.h
* Native Windows file dialog routines
*
* $Id$
@@ -22,8 +22,12 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
-#ifndef __WIN32_FILE_DLG_H__
-#define __WIN32_FILE_DLG_H__
+#ifndef __FILE_DLG_WIN32_H__
+#define __FILE_DLG_WIN32_H__
+
+#ifdef __cplusplus
+extern "C" {
+#endif /* __cplusplus */
typedef enum {
export_type_text = 1,
@@ -175,4 +179,8 @@ void file_set_save_marked_sensitive();
#define EWFD_PKT_BYTES_CB 1054
#define EWFD_PKT_NEW_PAGE_CB 1055
-#endif /* win32-file-dlg.h */
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif /* __FILE_DLG_WIN32_H__ */