diff options
| author | 2016-12-30 15:54:40 +0100 | |
|---|---|---|
| committer | 2017-03-18 10:44:01 +0100 | |
| commit | fb70c9683c088233810abe298d587eaf671f6041 (patch) | |
| tree | 1d2720d2d362d7c6b5381c83f4f8df0aabee1bc7 /src/core/hle/ipc.h | |
| parent | refactor APT service to use the new IPC helpers (diff) | |
| download | yuzu-fb70c9683c088233810abe298d587eaf671f6041.tar.gz yuzu-fb70c9683c088233810abe298d587eaf671f6041.tar.xz yuzu-fb70c9683c088233810abe298d587eaf671f6041.zip | |
move push out of class body and add u8 u16 bool specializations
Diffstat (limited to 'src/core/hle/ipc.h')
| -rw-r--r-- | src/core/hle/ipc.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/core/hle/ipc.h b/src/core/hle/ipc.h index cd9a5863d..3a5d481a5 100644 --- a/src/core/hle/ipc.h +++ b/src/core/hle/ipc.h | |||
| @@ -10,7 +10,8 @@ | |||
| 10 | 10 | ||
| 11 | namespace Kernel { | 11 | namespace Kernel { |
| 12 | 12 | ||
| 13 | static const int kCommandHeaderOffset = 0x80; ///< Offset into command buffer of header | 13 | /// Offset into command buffer of header |
| 14 | static const int kCommandHeaderOffset = 0x80; | ||
| 14 | 15 | ||
| 15 | /** | 16 | /** |
| 16 | * Returns a pointer to the command buffer in the current thread's TLS | 17 | * Returns a pointer to the command buffer in the current thread's TLS |
| @@ -26,8 +27,8 @@ inline u32* GetCommandBuffer(const int offset = 0) { | |||
| 26 | offset); | 27 | offset); |
| 27 | } | 28 | } |
| 28 | 29 | ||
| 29 | static const int kStaticBuffersOffset = | 30 | /// Offset into static buffers, relative to command buffer header |
| 30 | 0x100; ///< Offset into static buffers, relative to command buffer header | 31 | static const int kStaticBuffersOffset = 0x100; |
| 31 | 32 | ||
| 32 | /** | 33 | /** |
| 33 | * Returns a pointer to the static buffers area in the current thread's TLS | 34 | * Returns a pointer to the static buffers area in the current thread's TLS |