diff options
author | mailwl <mailwl@gmail.com> | 2016-05-31 09:05:31 +0200 |
---|---|---|
committer | mailwl <mailwl@gmail.com> | 2016-05-31 09:06:00 +0200 |
commit | e85b22320ab339a3f57f829606cf47eabc8f2b04 (patch) | |
tree | db7e200c3869639a8cce0da7dca2c8e3757d9ec1 /src/core/hle/kernel/session.h | |
parent | Fix mistakes, add output header codes (diff) | |
download | yuzu-e85b22320ab339a3f57f829606cf47eabc8f2b04.tar yuzu-e85b22320ab339a3f57f829606cf47eabc8f2b04.tar.gz yuzu-e85b22320ab339a3f57f829606cf47eabc8f2b04.tar.bz2 yuzu-e85b22320ab339a3f57f829606cf47eabc8f2b04.tar.lz yuzu-e85b22320ab339a3f57f829606cf47eabc8f2b04.tar.xz yuzu-e85b22320ab339a3f57f829606cf47eabc8f2b04.tar.zst yuzu-e85b22320ab339a3f57f829606cf47eabc8f2b04.zip |
Diffstat (limited to 'src/core/hle/kernel/session.h')
-rw-r--r-- | src/core/hle/kernel/session.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/kernel/session.h b/src/core/hle/kernel/session.h index 6ddaf970e..26b086f87 100644 --- a/src/core/hle/kernel/session.h +++ b/src/core/hle/kernel/session.h @@ -32,6 +32,10 @@ constexpr u32 CallingPidDesc() { return 0x20; } +constexpr u32 TransferHandleDesc() { + return 0x20; +} + constexpr u32 StaticBufferDesc(u32 size, unsigned int buffer_id) { return 0x2 | (size << 14) | ((buffer_id & 0xF) << 10); } |