- renamed hle_syscall to just syscall

- added service.h as an initial service interface
This commit is contained in:
bunnei 2014-04-11 18:44:21 -04:00
parent 7ea7585898
commit 02fbd42e7f
7 changed files with 157 additions and 106 deletions

19
src/core/hle/syscall.h Normal file
View file

@ -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