mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-20 17:27:53 -05:00
- renamed hle_syscall to just syscall
- added service.h as an initial service interface
This commit is contained in:
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
|
Reference in New Issue
Block a user