commit
9bb8720289
1 changed files with 4 additions and 4 deletions
|
@ -13,11 +13,11 @@
|
||||||
|
|
||||||
namespace Service::LM {
|
namespace Service::LM {
|
||||||
|
|
||||||
class Logger final : public ServiceFramework<Logger> {
|
class ILogger final : public ServiceFramework<ILogger> {
|
||||||
public:
|
public:
|
||||||
Logger() : ServiceFramework("Logger") {
|
ILogger() : ServiceFramework("ILogger") {
|
||||||
static const FunctionInfo functions[] = {
|
static const FunctionInfo functions[] = {
|
||||||
{0x00000000, &Logger::Initialize, "Initialize"},
|
{0x00000000, &ILogger::Initialize, "Initialize"},
|
||||||
{0x00000001, nullptr, "SetDestination"},
|
{0x00000001, nullptr, "SetDestination"},
|
||||||
};
|
};
|
||||||
RegisterHandlers(functions);
|
RegisterHandlers(functions);
|
||||||
|
@ -182,7 +182,7 @@ public:
|
||||||
void OpenLogger(Kernel::HLERequestContext& ctx) {
|
void OpenLogger(Kernel::HLERequestContext& ctx) {
|
||||||
IPC::ResponseBuilder rb{ctx, 2, 0, 1};
|
IPC::ResponseBuilder rb{ctx, 2, 0, 1};
|
||||||
rb.Push(RESULT_SUCCESS);
|
rb.Push(RESULT_SUCCESS);
|
||||||
rb.PushIpcInterface<Logger>();
|
rb.PushIpcInterface<ILogger>();
|
||||||
|
|
||||||
LOG_DEBUG(Service_LM, "called");
|
LOG_DEBUG(Service_LM, "called");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue