From 6b34e8b89ad209cba19ff65a194585246041720c Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 28 Aug 2015 18:34:12 -0400 Subject: [PATCH] explicit to fix anti-ATL build errors --- Source/Project64/N64 System/Cheat Class.cpp | 1 + Source/Project64/User Interface/Gui Class.cpp | 2 ++ Source/Project64/User Interface/Rom Browser Class.cpp | 2 ++ Source/Project64/User Interface/Settings Config.h | 2 ++ 4 files changed, 7 insertions(+) diff --git a/Source/Project64/N64 System/Cheat Class.cpp b/Source/Project64/N64 System/Cheat Class.cpp index edb972975..c4b330ba4 100644 --- a/Source/Project64/N64 System/Cheat Class.cpp +++ b/Source/Project64/N64 System/Cheat Class.cpp @@ -10,6 +10,7 @@ ****************************************************************************/ #include "stdafx.h" +#include #include "Settings/SettingType/SettingsType-Cheats.h" enum { WM_EDITCHEAT = WM_USER + 0x120 }; diff --git a/Source/Project64/User Interface/Gui Class.cpp b/Source/Project64/User Interface/Gui Class.cpp index dd50c3b83..7dc876590 100644 --- a/Source/Project64/User Interface/Gui Class.cpp +++ b/Source/Project64/User Interface/Gui Class.cpp @@ -9,6 +9,8 @@ * * ****************************************************************************/ #include "stdafx.h" + +#include #include "Settings/SettingType/SettingsType-Application.h" extern "C" diff --git a/Source/Project64/User Interface/Rom Browser Class.cpp b/Source/Project64/User Interface/Rom Browser Class.cpp index b1fc3e800..45ce7f787 100644 --- a/Source/Project64/User Interface/Rom Browser Class.cpp +++ b/Source/Project64/User Interface/Rom Browser Class.cpp @@ -1,5 +1,7 @@ #include "stdafx.h" +#include + CRomBrowser::CRomBrowser (HWND & MainWindow, HWND & StatusWindow ) : m_MainWindow(MainWindow), m_StatusWindow(StatusWindow), diff --git a/Source/Project64/User Interface/Settings Config.h b/Source/Project64/User Interface/Settings Config.h index aa2704b84..34ad0371d 100644 --- a/Source/Project64/User Interface/Settings Config.h +++ b/Source/Project64/User Interface/Settings Config.h @@ -1,5 +1,7 @@ #pragma once +#include + class CConfigSettingSection; class CSettingsPage;