2014-08-02 06:23:52 +00:00
|
|
|
// Copyright 2014 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2014-08-02 06:23:52 +00: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-21 02:49:49 +00:00
|
|
|
#include <memory>
|
2014-08-02 06:23:52 +00:00
|
|
|
#include <string>
|
|
|
|
|
2015-09-18 16:40:00 +00:00
|
|
|
#include "Common/GL/GLInterfaceBase.h"
|
2014-08-02 06:23:52 +00:00
|
|
|
#include "Core/Host.h"
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
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()
|
|
|
|
{
|
|
|
|
}
|
2017-07-12 07:11:29 +00:00
|
|
|
bool Host_UINeedsControllerState()
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
bool Host_RendererHasFocus()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
bool Host_RendererIsFullscreen()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2016-06-26 06:06:23 +00:00
|
|
|
void Host_ShowVideoConfig(void*, const std::string&)
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
|
|
|
}
|
2016-11-10 16:55:21 +00:00
|
|
|
void Host_YieldToUI()
|
|
|
|
{
|
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
std::unique_ptr<cInterfaceBase> HostGL_CreateGLInterface()
|
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|