summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/apt.h
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-04-14 04:59:16 +0200
committerbunnei <ericbunnie@gmail.com>2014-04-14 04:59:16 +0200
commit18766b9e69bf822764eba98237325d07b3c4ef0f (patch)
treebc7fc97b99c1be776c9ed23c1151aecb3ee4ee59 /src/core/hle/service/apt.h
parentadded framework for APT service (application and title launching service) (diff)
downloadyuzu-18766b9e69bf822764eba98237325d07b3c4ef0f.tar
yuzu-18766b9e69bf822764eba98237325d07b3c4ef0f.tar.gz
yuzu-18766b9e69bf822764eba98237325d07b3c4ef0f.tar.bz2
yuzu-18766b9e69bf822764eba98237325d07b3c4ef0f.tar.lz
yuzu-18766b9e69bf822764eba98237325d07b3c4ef0f.tar.xz
yuzu-18766b9e69bf822764eba98237325d07b3c4ef0f.tar.zst
yuzu-18766b9e69bf822764eba98237325d07b3c4ef0f.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/apt.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/core/hle/service/apt.h b/src/core/hle/service/apt.h
index 05c544378..3730bc30e 100644
--- a/src/core/hle/service/apt.h
+++ b/src/core/hle/service/apt.h
@@ -64,7 +64,13 @@ public:
* Called when svcSendSyncRequest is called, loads command buffer and executes comand
* @return Return result of svcSendSyncRequest passed back to user app
*/
- virtual Syscall::Result Sync();
+ Syscall::Result Sync();
+
+private:
+
+
+ Syscall::Result GetLockHandle();
+
};