- renamed hle_syscall to just syscall
- added service.h as an initial service interface
This commit is contained in:
parent
7ea7585898
commit
02fbd42e7f
7 changed files with 157 additions and 106 deletions
19
src/core/hle/syscall.h
Normal file
19
src/core/hle/syscall.h
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue