Add more services and some fixes, along with more "override"

in the service's headers
This commit is contained in:
purpasmart96
2014-11-12 13:13:08 -08:00
committed by purpasmart96
parent c0cd0fa78e
commit 9821bfcb8e
26 changed files with 464 additions and 17 deletions

View 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