Win32: Add an include guard.

Add "#ifdef _WIN32" to file_dlg_win32.c so that it's ignored by
tools/validate-clang-check.sh.


(cherry picked from commit 6e1142c33a)
This commit is contained in:
Gerald Combs 2020-12-11 21:38:14 +00:00 committed by Pascal Quantin
parent bf311c44a5
commit 862a55ae54
1 changed files with 4 additions and 0 deletions

View File

@ -8,6 +8,8 @@
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifdef _WIN32
#include "config.h"
#include <tchar.h>
@ -1796,6 +1798,8 @@ export_file_hook_proc(HWND ef_hwnd, UINT msg, WPARAM w_param, LPARAM l_param) {
return 0;
}
#endif // _WIN32
/*
* Editor modelines
*