Add includes for building on Windows without PCH

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

View file

@ -6,7 +6,9 @@
#include "Common/CommonFuncs.h"
#include "Common/CommonTypes.h"
#ifndef _WIN32
#ifdef _WIN32
#include <windows.h>
#else
#include <unistd.h>
#endif