mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2026-03-07 23:52:57 +00: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