mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-11 02:17:59 -05:00
Add more services and some fixes, along with more "override"
in the service's headers
This commit is contained in:
committed by
purpasmart96
parent
c0cd0fa78e
commit
9821bfcb8e
27
src/core/hle/service/csnd_snd.h
Normal file
27
src/core/hle/service/csnd_snd.h
Normal file
@ -0,0 +1,27 @@
|
||||
// Copyright 2014 Citra Emulator Project
|
||||
// Licensed under GPLv2
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "core/hle/service/service.h"
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// Namespace CSND_SND
|
||||
|
||||
namespace CSND_SND {
|
||||
|
||||
class Interface : public Service::Interface {
|
||||
public:
|
||||
Interface();
|
||||
~Interface();
|
||||
/**
|
||||
* Gets the string port name used by CTROS for the service
|
||||
* @return Port name of service
|
||||
*/
|
||||
std::string GetPortName() const override {
|
||||
return "csnd:SND";
|
||||
}
|
||||
};
|
||||
|
||||
} // namespace
|
Reference in New Issue
Block a user