From ac83588c3a758d871c482e1cf5ac45dc1fdcd673 Mon Sep 17 00:00:00 2001 From: nakeee Date: Sun, 7 Sep 2008 20:29:31 +0000 Subject: continue changing src to Src git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@474 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/DolphinWX/src/MainNoGUI.cpp | 89 --------------------------------- 1 file changed, 89 deletions(-) delete mode 100644 Source/Core/DolphinWX/src/MainNoGUI.cpp (limited to 'Source/Core/DolphinWX/src/MainNoGUI.cpp') diff --git a/Source/Core/DolphinWX/src/MainNoGUI.cpp b/Source/Core/DolphinWX/src/MainNoGUI.cpp deleted file mode 100644 index 2389cf017d..0000000000 --- a/Source/Core/DolphinWX/src/MainNoGUI.cpp +++ /dev/null @@ -1,89 +0,0 @@ -#include -#include -#ifndef _WIN32 -//#include -#else -#endif - -#include "Globals.h" -#include "Common.h" -#include "ISOFile.h" -#include "CPUDetect.h" - -#include "BootManager.h" -void* g_pCodeWindow = NULL; -void* main_frame = NULL; -bool wxPanicAlert(const char* text, bool /*yes_no*/) -{ - return(true); -} - - -void Host_BootingStarted(){} - - -void Host_BootingEnded(){} - - -// OK, this thread boundary is DANGEROUS on linux -// wxPostEvent / wxAddPendingEvent is the solution. -void Host_NotifyMapLoaded(){} - - -void Host_UpdateLogDisplay(){} - - -void Host_UpdateDisasmDialog(){} - - -void Host_UpdateMainFrame(){} - -void Host_UpdateBreakPointView(){} - - -void Host_UpdateMemoryView(){} - - -void Host_SetDebugMode(bool){} - - -void Host_SetWaitCursor(bool enable){} - - -void Host_CreateDisplay(){} - - -void Host_CloseDisplay(){} - -void Host_UpdateStatusBar(const char* _pText){} - -// Include SDL header so it can hijack main(). -#include -#include "cmdline.h" - -int main(int argc, char* argv[]) -{ - gengetopt_args_info args_info; - - if (cmdline_parser (argc, argv, &args_info) != 0) - return(1); - - if (args_info.inputs_num < 1) - { - fprintf(stderr, "Please supply at least one argument - the ISO to boot.\n"); - return(1); - } - std::string bootFile(args_info.inputs[0]); - - DetectCPU(); - BootManager::BootCore(bootFile); - usleep(2000 * 1000 * 1000); -// while (!getch()) { - // usleep(20); -// } - - cmdline_parser_free (&args_info); - return(0); -} - - -- cgit v1.2.3