diff options
| author | Jeff Garzik <[email protected]> | 2012-06-09 12:40:15 -0700 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2012-06-09 12:40:15 -0700 |
| commit | 883a310904b3d36c9d74b887d47c14a072ebae7d (patch) | |
| tree | 3a15392324b324b9aa86cc6a915d228fb57a1e48 /src/qt/guiutil.cpp | |
| parent | Merge pull request #1421 from Diapolo/netbase_fix_sign_warnings (diff) | |
| parent | Fix Mingw64 build (missing headers according to M$ documentation) (diff) | |
| download | discoin-883a310904b3d36c9d74b887d47c14a072ebae7d.tar.xz discoin-883a310904b3d36c9d74b887d47c14a072ebae7d.zip | |
Merge pull request #1435 from TheBlueMatt/mingwbuild
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 { |