diff options
author | mailwl <mailwl@gmail.com> | 2016-11-02 19:48:10 +0100 |
---|---|---|
committer | mailwl <mailwl@gmail.com> | 2016-12-11 20:36:12 +0100 |
commit | e53cd12c42b8efb9d980e4c6aac66ea9ffb9f89e (patch) | |
tree | 2b3f2fc4e58a29e76a6130a70260b2fecfd0c6a7 /src/core/hle/service/apt/apt.h | |
parent | citra-qt: Make constructors explicit where applicable (diff) | |
download | yuzu-e53cd12c42b8efb9d980e4c6aac66ea9ffb9f89e.tar yuzu-e53cd12c42b8efb9d980e4c6aac66ea9ffb9f89e.tar.gz yuzu-e53cd12c42b8efb9d980e4c6aac66ea9ffb9f89e.tar.bz2 yuzu-e53cd12c42b8efb9d980e4c6aac66ea9ffb9f89e.tar.lz yuzu-e53cd12c42b8efb9d980e4c6aac66ea9ffb9f89e.tar.xz yuzu-e53cd12c42b8efb9d980e4c6aac66ea9ffb9f89e.tar.zst yuzu-e53cd12c42b8efb9d980e4c6aac66ea9ffb9f89e.zip |
Diffstat (limited to 'src/core/hle/service/apt/apt.h')
-rw-r--r-- | src/core/hle/service/apt/apt.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/hle/service/apt/apt.h b/src/core/hle/service/apt/apt.h index 44dbd8757..e6a8be870 100644 --- a/src/core/hle/service/apt/apt.h +++ b/src/core/hle/service/apt/apt.h @@ -407,9 +407,11 @@ void CancelLibraryApplet(Service::Interface* self); * Inputs: * 1 : Parameter Size (capped to 0x300) * 2 : StartupArgumentType + * 65 : Output buffer for startup argument * Outputs: * 0 : Return header - * 1 : u8, Exists (0 = does not exist, 1 = exists) + * 1 : Result of function, 0 on success, otherwise error code + * 2 : u8, Exists (0 = does not exist, 1 = exists) */ void GetStartupArgument(Service::Interface* self); |