diff options
author | Jeff Garzik <jgarzik@exmulti.com> | 2012-06-09 12:40:15 -0700 |
---|---|---|
committer | Jeff Garzik <jgarzik@exmulti.com> | 2012-06-09 12:40:15 -0700 |
commit | 883a310904b3d36c9d74b887d47c14a072ebae7d (patch) | |
tree | 3a15392324b324b9aa86cc6a915d228fb57a1e48 /src | |
parent | 11f73c728afcc1663755d85311cc09c5188a4dd3 (diff) | |
parent | b065976007a1aaf9f4fc40e12a8459730d168514 (diff) |
Merge pull request #1435 from TheBlueMatt/mingwbuild
Fix Mingw64 build (missing headers according to M$ documentation)
Diffstat (limited to 'src')
-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 { |