Skip to content
Snippets Groups Projects
Commit e56e3292 authored by Brad King's avatar Brad King
Browse files

Encoding: Support building on Windows with WIN32_LEAN_AND_MEAN

Include the <shellapi.h> header to get CommandLineToArgvW even
when <windows.h> does not include it due to WIN32_LEAN_AND_MEAN.

Change-Id: If42241621c30b76c7b49cd64e044a19403f9da09
parent 2089567a
No related branches found
No related tags found
No related merge requests found
...@@ -38,6 +38,7 @@ ...@@ -38,6 +38,7 @@
// Windows API. // Windows API.
#if defined(_WIN32) #if defined(_WIN32)
# include <windows.h> # include <windows.h>
# include <shellapi.h>
#endif #endif
namespace KWSYS_NAMESPACE namespace KWSYS_NAMESPACE
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment