diff options
author | bunnei <ericbunnie@gmail.com> | 2014-04-16 04:42:35 +0200 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-04-16 04:42:35 +0200 |
commit | 386dd722e7a2463eadefd3b1fd82681e8edcb5b7 (patch) | |
tree | 20fd5439d515afa4cf1035ab15af7af5d2ca77ec /src/core/hle/service/apt.cpp | |
parent | - extracted srv: calls from service.cpp and put in its own module (diff) | |
download | yuzu-386dd722e7a2463eadefd3b1fd82681e8edcb5b7.tar yuzu-386dd722e7a2463eadefd3b1fd82681e8edcb5b7.tar.gz yuzu-386dd722e7a2463eadefd3b1fd82681e8edcb5b7.tar.bz2 yuzu-386dd722e7a2463eadefd3b1fd82681e8edcb5b7.tar.lz yuzu-386dd722e7a2463eadefd3b1fd82681e8edcb5b7.tar.xz yuzu-386dd722e7a2463eadefd3b1fd82681e8edcb5b7.tar.zst yuzu-386dd722e7a2463eadefd3b1fd82681e8edcb5b7.zip |
Diffstat (limited to 'src/core/hle/service/apt.cpp')
-rw-r--r-- | src/core/hle/service/apt.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/apt.cpp b/src/core/hle/service/apt.cpp index b1e49db97..288a68a86 100644 --- a/src/core/hle/service/apt.cpp +++ b/src/core/hle/service/apt.cpp @@ -8,7 +8,7 @@ #include "core/hle/hle.h" #include "core/hle/service/apt.h" -namespace Service { +namespace APT_U { const HLE::FunctionDef APT_U_Table[] = { {0x00010040, NULL, "GetLockHandle"}, @@ -92,7 +92,7 @@ const HLE::FunctionDef APT_U_Table[] = { }; // Returns handle to APT Mutex. Not imlemented. -Syscall::Result APT_U::GetLockHandle() { +Syscall::Result Interface::GetLockHandle() { return 0x00000000; } @@ -100,7 +100,7 @@ Syscall::Result APT_U::GetLockHandle() { * Called when svcSendSyncRequest is called, loads command buffer and executes comand * @return Return result of svcSendSyncRequest passed back to user app */ -Syscall::Result APT_U::Sync() { +Syscall::Result Interface::Sync() { Syscall::Result res = 0; u32* cmd_buff = (u32*)HLE::GetPointer(HLE::CMD_BUFFER_ADDR + CMD_OFFSET); |