2014-08-02 00:23:52 -06:00
|
|
|
// Copyright 2014 Dolphin Emulator Project
|
2015-05-17 17:08:10 -06:00
|
|
|
// Licensed under GPLv2+
|
2014-08-02 00:23:52 -06:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
// Stub implementation of the Host_* callbacks for tests. These implementations
|
|
|
|
// do nothing except return default values when required.
|
|
|
|
|
2015-12-20 19:49:49 -07:00
|
|
|
#include <memory>
|
2014-08-02 00:23:52 -06:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "Core/Host.h"
|
|
|
|
|
|
|
|
void Host_NotifyMapLoaded()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
void Host_RefreshDSPDebuggerWindow()
|
|
|
|
{
|
|
|
|
}
|
2018-05-28 11:03:29 -06:00
|
|
|
void Host_Message(HostMessageID)
|
2014-08-02 00:23:52 -06:00
|
|
|
{
|
|
|
|
}
|
|
|
|
void Host_UpdateTitle(const std::string&)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
void Host_UpdateDisasmDialog()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
void Host_UpdateMainFrame()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
void Host_RequestRenderWindowSize(int, int)
|
|
|
|
{
|
2014-08-31 06:52:21 -06:00
|
|
|
}
|
2019-03-18 10:30:33 -06:00
|
|
|
bool Host_UIBlocksControllerState()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2014-08-02 00:23:52 -06:00
|
|
|
bool Host_RendererHasFocus()
|
|
|
|
{
|
|
|
|
return false;
|
2015-01-04 09:09:56 -07:00
|
|
|
}
|
|
|
|
bool Host_RendererIsFullscreen()
|
|
|
|
{
|
|
|
|
return false;
|
2014-08-02 00:23:52 -06:00
|
|
|
}
|
2016-11-10 09:55:21 -07:00
|
|
|
void Host_YieldToUI()
|
|
|
|
{
|
|
|
|
}
|
2019-02-13 19:31:31 -07:00
|
|
|
void Host_TitleChanged()
|
|
|
|
{
|
|
|
|
}
|