mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-21 01:47:48 +00:00
Services: Stubbed more services.
Implemented FSUser::CreateExtSaveData
This commit is contained in:
parent
92550013cf
commit
c2e9990149
24 changed files with 693 additions and 3 deletions
23
src/core/hle/service/news_s.h
Normal file
23
src/core/hle/service/news_s.h
Normal file
|
@ -0,0 +1,23 @@
|
|||
// Copyright 2015 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 NEWS_S
|
||||
|
||||
namespace NEWS_S {
|
||||
|
||||
class Interface : public Service::Interface {
|
||||
public:
|
||||
Interface();
|
||||
|
||||
std::string GetPortName() const override {
|
||||
return "news:s";
|
||||
}
|
||||
};
|
||||
|
||||
} // namespace
|
Loading…
Add table
Add a link
Reference in a new issue