diff options
| author | bunnei <bunneidev@gmail.com> | 2018-04-13 00:25:32 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-04-13 00:25:32 -0400 |
| commit | b7369f99ec3f794bcc626b83f78efa5728087750 (patch) | |
| tree | 44141ddb2b3d6093b14886df22d84ff120e941e5 /src/core/hle/service/nvdrv/interface.cpp | |
| parent | 9629736625fddcd1bc6d2557e0fe80ff6e685eba (diff) | |
| parent | cc89b7bfcbe3448c8ca3e224b8d3fa628214748e (diff) | |
Merge pull request #319 from Hexagon12/service-name-fix
Various service name fixes - part 1
Diffstat (limited to 'src/core/hle/service/nvdrv/interface.cpp')
| -rw-r--r-- | src/core/hle/service/nvdrv/interface.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/hle/service/nvdrv/interface.cpp b/src/core/hle/service/nvdrv/interface.cpp index c70370f1f..567c2cd7c 100644 --- a/src/core/hle/service/nvdrv/interface.cpp +++ b/src/core/hle/service/nvdrv/interface.cpp @@ -96,7 +96,14 @@ NVDRV::NVDRV(std::shared_ptr<Module> nvdrv, const char* name) {2, &NVDRV::Close, "Close"}, {3, &NVDRV::Initialize, "Initialize"}, {4, &NVDRV::QueryEvent, "QueryEvent"}, + {5, nullptr, "MapSharedMem"}, + {6, nullptr, "GetStatus"}, + {7, nullptr, "ForceSetClientPID"}, {8, &NVDRV::SetClientPID, "SetClientPID"}, + {9, nullptr, "DumpGraphicsMemoryInfo"}, + {10, nullptr, "InitializeDevtools"}, + {11, nullptr, "Ioctl2"}, + {12, nullptr, "Ioctl3"}, {13, &NVDRV::FinishInitialize, "FinishInitialize"}, }; RegisterHandlers(functions); |
