diff options
author | bunnei <ericbunnie@gmail.com> | 2014-04-12 00:44:21 +0200 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-04-12 00:44:21 +0200 |
commit | 02fbd42e7f006236199698c61ca917092afa1f7d (patch) | |
tree | b60bd6801f624839dc80b53dffb523fa98b7b46f /src/core/hle/syscall.h | |
parent | replace tabs with spaces (diff) | |
download | yuzu-02fbd42e7f006236199698c61ca917092afa1f7d.tar yuzu-02fbd42e7f006236199698c61ca917092afa1f7d.tar.gz yuzu-02fbd42e7f006236199698c61ca917092afa1f7d.tar.bz2 yuzu-02fbd42e7f006236199698c61ca917092afa1f7d.tar.lz yuzu-02fbd42e7f006236199698c61ca917092afa1f7d.tar.xz yuzu-02fbd42e7f006236199698c61ca917092afa1f7d.tar.zst yuzu-02fbd42e7f006236199698c61ca917092afa1f7d.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/hle/syscall.h | 19 |
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 000000000..7a94e0136 --- /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 |