Moved nvmemp handlers to cpp

This commit is contained in:
David Marcec
2018-01-19 15:28:33 -08:00
parent 116fbb1de9
commit 2160d6058d
2 changed files with 11 additions and 7 deletions

View File

@@ -2,6 +2,7 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include "common/assert.h"
#include "common/logging/log.h"
#include "core/hle/ipc_helpers.h"
#include "core/hle/service/nvdrv/nvdrv.h"
@@ -17,5 +18,13 @@ NVMEMP::NVMEMP() : ServiceFramework("nvmemp") {
RegisterHandlers(functions);
}
void NVMEMP::Unknown0(Kernel::HLERequestContext& ctx) {
UNIMPLEMENTED();
}
void NVMEMP::Unknown1(Kernel::HLERequestContext& ctx) {
UNIMPLEMENTED();
}
} // namespace Nvidia
} // namespace Service

View File

@@ -15,13 +15,8 @@ public:
~NVMEMP() = default;
private:
void Unknown0(Kernel::HLERequestContext& ctx) {
UNIMPLEMENTED();
}
void Unknown1(Kernel::HLERequestContext& ctx) {
UNIMPLEMENTED();
}
void Unknown0(Kernel::HLERequestContext& ctx);
void Unknown1(Kernel::HLERequestContext& ctx);
};
} // namespace Nvidia