mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
19 lines
259 B
C++
19 lines
259 B
C++
#pragma once
|
|
|
|
#include "orbis-config.hpp"
|
|
|
|
namespace orbis {
|
|
struct Thread;
|
|
using sy_call_t = SysResult(Thread *, uint64_t *);
|
|
|
|
struct sysent {
|
|
sint narg;
|
|
sy_call_t *call;
|
|
};
|
|
|
|
struct sysentvec {
|
|
sint size;
|
|
const sysent *table;
|
|
};
|
|
} // namespace orbis
|