diff options
author | Matt Corallo <matt@bluematt.me> | 2012-06-09 17:14:41 +0200 |
---|---|---|
committer | Matt Corallo <matt@bluematt.me> | 2012-06-09 17:14:41 +0200 |
commit | b065976007a1aaf9f4fc40e12a8459730d168514 (patch) | |
tree | e189380b3026d7092d1def64fef56869fd6ef84e /src/qt/guiutil.cpp | |
parent | afdd59416ed614c63591946aa95c9334db41fc8c (diff) |
Fix Mingw64 build (missing headers according to M$ documentation)
Diffstat (limited to 'src/qt/guiutil.cpp')
-rw-r--r-- | src/qt/guiutil.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qt/guiutil.cpp b/src/qt/guiutil.cpp index 3f2fc2ffa1..e8df8ad7b0 100644 --- a/src/qt/guiutil.cpp +++ b/src/qt/guiutil.cpp @@ -36,6 +36,8 @@ #define NOMINMAX #endif #include "shlwapi.h" +#include "shlobj.h" +#include "shellapi.h" #endif namespace GUIUtil { |