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