summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/svc.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-12-14 21:30:02 +0100
committerGitHub <noreply@github.com>2018-12-14 21:30:02 +0100
commit1a23970d172602497af57969824551e77ae9dfe7 (patch)
treeeb5c6849e4c83f70779b4f67ee6e1094421ac8e3 /src/core/hle/kernel/svc.h
parentMerge pull request #1871 from lioncash/move (diff)
parentsvc: Enable svcQueryProcessMemory (diff)
downloadyuzu-1a23970d172602497af57969824551e77ae9dfe7.tar
yuzu-1a23970d172602497af57969824551e77ae9dfe7.tar.gz
yuzu-1a23970d172602497af57969824551e77ae9dfe7.tar.bz2
yuzu-1a23970d172602497af57969824551e77ae9dfe7.tar.lz
yuzu-1a23970d172602497af57969824551e77ae9dfe7.tar.xz
yuzu-1a23970d172602497af57969824551e77ae9dfe7.tar.zst
yuzu-1a23970d172602497af57969824551e77ae9dfe7.zip
Diffstat (limited to 'src/core/hle/kernel/svc.h')
-rw-r--r--src/core/hle/kernel/svc.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/core/hle/kernel/svc.h b/src/core/hle/kernel/svc.h
index b06aac4ec..c37ae0f98 100644
--- a/src/core/hle/kernel/svc.h
+++ b/src/core/hle/kernel/svc.h
@@ -8,22 +8,6 @@
namespace Kernel {
-struct MemoryInfo {
- u64 base_address;
- u64 size;
- u32 type;
- u32 attributes;
- u32 permission;
- u32 device_refcount;
- u32 ipc_refcount;
- INSERT_PADDING_WORDS(1);
-};
-static_assert(sizeof(MemoryInfo) == 0x28, "MemoryInfo has incorrect size.");
-
-struct PageInfo {
- u64 flags;
-};
-
void CallSVC(u32 immediate);
} // namespace Kernel