From b065976007a1aaf9f4fc40e12a8459730d168514 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Sat, 9 Jun 2012 17:14:41 +0200 Subject: [PATCH] Fix Mingw64 build (missing headers according to M$ documentation) --- src/qt/guiutil.cpp | 2 ++ 1 file changed, 2 insertions(+) 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 {