Move BootManager.cpp to Core since it really doesn't do any wx-specific stuff.

This one is for NaturalViolence, since he was so eager to see it :P

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7152 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
NeoBrainX 2011-02-12 21:25:49 +00:00
parent e81ccd7f33
commit bc6f04adae
12 changed files with 57 additions and 237 deletions

View file

@ -1,5 +1,6 @@
set(SRCS Src/ActionReplay.cpp
Src/ARDecrypt.cpp
Src/BootManager.cpp
Src/ConfigManager.cpp
Src/Console.cpp
Src/Core.cpp

View file

@ -198,6 +198,7 @@
<ItemGroup>
<ClCompile Include="Src\ActionReplay.cpp" />
<ClCompile Include="Src\ARDecrypt.cpp" />
<ClCompile Include="Src\BootManager.cpp" />
<ClCompile Include="Src\Boot\Boot.cpp" />
<ClCompile Include="Src\Boot\Boot_BS2Emu.cpp" />
<ClCompile Include="Src\Boot\Boot_DOL.cpp" />
@ -394,6 +395,7 @@
<ItemGroup>
<ClInclude Include="Src\ActionReplay.h" />
<ClInclude Include="Src\ARDecrypt.h" />
<ClInclude Include="Src\BootManager.h" />
<ClInclude Include="Src\Boot\Boot.h" />
<ClInclude Include="Src\Boot\Boot_DOL.h" />
<ClInclude Include="Src\Boot\Boot_ELF.h" />

View file

@ -44,6 +44,7 @@ void Host_Message(int Id);
void Host_NotifyMapLoaded();
void Host_RefreshDSPDebuggerWindow();
void Host_RequestRenderWindowSize(int width, int height);
void Host_SetStartupDebuggingParameters();
void Host_SetWaitCursor(bool enable);
void Host_SetWiiMoteConnectionState(int _State);
void Host_ShowJitResults(unsigned int address);
@ -55,4 +56,8 @@ void Host_UpdateMainFrame();
void Host_UpdateStatusBar(const char* _pText, int Filed = 0);
void Host_UpdateTitle(const char* title);
// TODO (neobrain): Remove these from host!
void* Host_GetInstance();
void* Host_GetRenderHandle();
#endif

View file

@ -6,6 +6,7 @@ import sys
files = [
"ActionReplay.cpp",
"ARDecrypt.cpp",
"BootManager.cpp",
"ConfigManager.cpp",
"Console.cpp",
"Core.cpp",