mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-04 08:55:28 +01:00

Also moves a cpp file's related header file to the top of the inclusions if it isn't already there.
36 lines
759 B
C++
36 lines
759 B
C++
// Copyright 2016 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#include "Core/IOS/DeviceStub.h"
|
|
|
|
#include "Common/Logging/Log.h"
|
|
|
|
namespace IOS
|
|
{
|
|
namespace HLE
|
|
{
|
|
namespace Device
|
|
{
|
|
ReturnCode Stub::Open(const OpenRequest& request)
|
|
{
|
|
WARN_LOG(IOS, "%s faking Open()", m_name.c_str());
|
|
m_is_active = true;
|
|
return IPC_SUCCESS;
|
|
}
|
|
|
|
IPCCommandResult Stub::IOCtl(const IOCtlRequest& request)
|
|
{
|
|
WARN_LOG(IOS, "%s faking IOCtl()", m_name.c_str());
|
|
return GetDefaultReply(IPC_SUCCESS);
|
|
}
|
|
|
|
IPCCommandResult Stub::IOCtlV(const IOCtlVRequest& request)
|
|
{
|
|
WARN_LOG(IOS, "%s faking IOCtlV()", m_name.c_str());
|
|
return GetDefaultReply(IPC_SUCCESS);
|
|
}
|
|
} // namespace Device
|
|
} // namespace HLE
|
|
} // namespace IOS
|