diff options
author | bunnei <ericbunnie@gmail.com> | 2014-04-14 04:59:16 +0200 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-04-14 04:59:16 +0200 |
commit | 18766b9e69bf822764eba98237325d07b3c4ef0f (patch) | |
tree | bc7fc97b99c1be776c9ed23c1151aecb3ee4ee59 /src/core/hle/service/apt.h | |
parent | added framework for APT service (application and title launching service) (diff) | |
download | yuzu-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 'src/core/hle/service/apt.h')
-rw-r--r-- | src/core/hle/service/apt.h | 8 |
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(); + }; |