Fixes for building on vc12 (vs 2013), these are primarily just missing includes

This commit is contained in:
Anonymous
2014-01-23 20:19:15 -07:00
parent 65deed81ce
commit 384597f8fb
137 changed files with 979 additions and 130 deletions
@@ -12,6 +12,8 @@
#include "Archive/Archive.h"
#include "sharedFoundation/FormattedString.h"
#include <algorithm>
// ======================================================================
BitArray::BitArray() :
@@ -10,6 +10,7 @@
#include "sharedFoundation/FirstSharedFoundation.h"
#include "sharedFoundation/MessageQueue.h"
#include <algorithm>
#include <vector>
// ======================================================================
@@ -617,7 +617,7 @@ void Os::setIMEHookFunction(IMEHookFunction imeHookFunction)
ms_IMEHookFunction = imeHookFunction;
// do not install the hotkey fix if the debugger is present.
if (ms_IMEHookFunction && !IsDebuggerPresent())
if (ms_IMEHookFunction && !OsNamespace::IsDebuggerPresent())
{
RegisterHotKey(ms_window, ms_hotKeyId, 0, VK_F5);
}