aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/syscall.h
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-04-11 18:44:21 -0400
committerbunnei <ericbunnie@gmail.com>2014-04-11 18:44:21 -0400
commit02fbd42e7f006236199698c61ca917092afa1f7d (patch)
treeb60bd6801f624839dc80b53dffb523fa98b7b46f /src/core/hle/syscall.h
parent7ea75858984e23ed22ad1dfa8ad0315aaeded538 (diff)
- renamed hle_syscall to just syscall
- added service.h as an initial service interface
Diffstat (limited to 'src/core/hle/syscall.h')
-rw-r--r--src/core/hle/syscall.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/core/hle/syscall.h b/src/core/hle/syscall.h
new file mode 100644
index 0000000000..7a94e01367
--- /dev/null
+++ b/src/core/hle/syscall.h
@@ -0,0 +1,19 @@
+// Copyright 2014 Citra Emulator Project
+// Licensed under GPLv2
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include "common/common_types.h"
+
+////////////////////////////////////////////////////////////////////////////////////////////////////
+// Namespace Syscall
+
+namespace Syscall {
+
+typedef u32 Handle;
+typedef s32 Result;
+
+void Register();
+
+} // namespace