diff options
| author | Matt Corallo <[email protected]> | 2012-06-09 17:14:41 +0200 |
|---|---|---|
| committer | Matt Corallo <[email protected]> | 2012-06-09 17:14:41 +0200 |
| commit | b065976007a1aaf9f4fc40e12a8459730d168514 (patch) | |
| tree | e189380b3026d7092d1def64fef56869fd6ef84e /src/qt/guiutil.cpp | |
| parent | Merge pull request #1418 from Diapolo/GUI_fix_default_proxy_addr (diff) | |
| download | discoin-b065976007a1aaf9f4fc40e12a8459730d168514.tar.xz discoin-b065976007a1aaf9f4fc40e12a8459730d168514.zip | |
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 3f2fc2ffa..e8df8ad7b 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 { |