Add includes for building on Windows without PCH

This commit is contained in:
Michael Maltese
2017-01-22 23:08:45 -08:00
parent c3a1547d9a
commit 713ec5ffd5
15 changed files with 24 additions and 10 deletions

View File

@ -20,12 +20,12 @@
#include "Common/Logging/Log.h"
#ifdef _WIN32
#include <windows.h>
#include <commdlg.h> // for GetSaveFileName
#include <direct.h> // getcwd
#include <io.h>
#include <objbase.h> // guid stuff
#include <shellapi.h>
#include <windows.h>
#else
#include <dirent.h>
#include <errno.h>