summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/apt.cpp
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-04-25 04:16:54 +0200
committerbunnei <ericbunnie@gmail.com>2014-04-25 04:16:54 +0200
commitcd0664eb77e14a801fe1f15be50c3a90b98ee5ef (patch)
treecddeb131b3ff7e43cc638ff0b8817b746b284491 /src/core/hle/service/apt.cpp
parentremoved "COVERAGE_" from "GCC_COVERAGE_COMPILE_FLAGS" (diff)
downloadyuzu-cd0664eb77e14a801fe1f15be50c3a90b98ee5ef.tar
yuzu-cd0664eb77e14a801fe1f15be50c3a90b98ee5ef.tar.gz
yuzu-cd0664eb77e14a801fe1f15be50c3a90b98ee5ef.tar.bz2
yuzu-cd0664eb77e14a801fe1f15be50c3a90b98ee5ef.tar.lz
yuzu-cd0664eb77e14a801fe1f15be50c3a90b98ee5ef.tar.xz
yuzu-cd0664eb77e14a801fe1f15be50c3a90b98ee5ef.tar.zst
yuzu-cd0664eb77e14a801fe1f15be50c3a90b98ee5ef.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/apt.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/apt.cpp b/src/core/hle/service/apt.cpp
index 4f8d7248d..4a1e8c992 100644
--- a/src/core/hle/service/apt.cpp
+++ b/src/core/hle/service/apt.cpp
@@ -13,16 +13,16 @@
namespace APT_U {
-void Initialize() {
+void Initialize(Service::Interface* self) {
NOTICE_LOG(OSHLE, "APT_U::Sync - Initialize");
}
-void GetLockHandle() {
+void GetLockHandle(Service::Interface* self) {
u32* cmd_buff = (u32*)HLE::GetPointer(HLE::CMD_BUFFER_ADDR + Service::kCommandHeaderOffset);
cmd_buff[5] = 0x00000000; // TODO: This should be an actual mutex handle
}
-const HLE::FunctionDef FunctionTable[] = {
+const Interface::FunctionInfo FunctionTable[] = {
{0x00010040, GetLockHandle, "GetLockHandle"},
{0x00020080, Initialize, "Initialize"},
{0x00030040, NULL, "Enable"},