mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-15 06:57:55 +00:00
Stub the y2r:u service
This commit is contained in:
parent
092a67cefb
commit
48130b1eaa
4 changed files with 72 additions and 0 deletions
23
src/core/hle/service/y2r_u.h
Normal file
23
src/core/hle/service/y2r_u.h
Normal file
|
@ -0,0 +1,23 @@
|
|||
// Copyright 2014 Citra Emulator Project
|
||||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "core/hle/service/service.h"
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// Namespace Y2R_U
|
||||
|
||||
namespace Y2R_U {
|
||||
|
||||
class Interface : public Service::Interface {
|
||||
public:
|
||||
Interface();
|
||||
|
||||
std::string GetPortName() const override {
|
||||
return "y2r:u";
|
||||
}
|
||||
};
|
||||
|
||||
} // namespace
|
Loading…
Add table
Add a link
Reference in a new issue