Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Merge pull request #6058 from leoetlino/dsptool-fix
DSPTool: Fix build
- Loading branch information
Showing
3 changed files
with
63 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,60 @@ | ||
| // Copyright 2017 Dolphin Emulator Project | ||
| // Licensed under GPLv2+ | ||
| // Refer to the license.txt file included. | ||
|
|
||
| // Stub implementation of the Host_* callbacks for DSPTool. These implementations | ||
| // do nothing except return default values when required. | ||
|
|
||
| #include <string> | ||
|
|
||
| #include "Core/Host.h" | ||
|
|
||
| void Host_NotifyMapLoaded() | ||
| { | ||
| } | ||
| void Host_RefreshDSPDebuggerWindow() | ||
| { | ||
| } | ||
| void Host_Message(int) | ||
| { | ||
| } | ||
| void* Host_GetRenderHandle() | ||
| { | ||
| return nullptr; | ||
| } | ||
| void Host_UpdateTitle(const std::string&) | ||
| { | ||
| } | ||
| void Host_UpdateDisasmDialog() | ||
| { | ||
| } | ||
| void Host_UpdateMainFrame() | ||
| { | ||
| } | ||
| void Host_RequestRenderWindowSize(int, int) | ||
| { | ||
| } | ||
| void Host_SetStartupDebuggingParameters() | ||
| { | ||
| } | ||
| bool Host_UINeedsControllerState() | ||
| { | ||
| return false; | ||
| } | ||
| bool Host_RendererHasFocus() | ||
| { | ||
| return false; | ||
| } | ||
| bool Host_RendererIsFullscreen() | ||
| { | ||
| return false; | ||
| } | ||
| void Host_ShowVideoConfig(void*, const std::string&) | ||
| { | ||
| } | ||
| void Host_YieldToUI() | ||
| { | ||
| } | ||
| void Host_UpdateProgressDialog(const char* caption, int position, int total) | ||
| { | ||
| } |