can't compile against msvc2010
Closed this issue · 1 comments
windymindy commented
--- qlocalfile.cpp ---
28 #elif defined(Q_OS_WIN32)
29 # include <aclapi.h>
30 # include <fileapi.h>
31 #endif
Line 30: can't open fileapi.h
Here is a quick workaround.
#elif defined(Q_OS_WIN32)
include <aclapi.h>
-# include <fileapi.h>
+# //include <fileapi.h>
+# include <windows.h>
#endif
nathan-osman commented
Thanks, this is fixed now.