mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-01-06 10:08:20 +00:00
Added CELL_CANCEL
This commit is contained in:
parent
3a1f1dbc1a
commit
81c8d3f27a
@ -1,18 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
struct CellOk
|
||||
enum CellNotAnError : s32
|
||||
{
|
||||
enum : s32
|
||||
{
|
||||
__not_an_error,
|
||||
CELL_OK = 0,
|
||||
CELL_CANCEL = 1,
|
||||
|
||||
CELL_OK = 0
|
||||
};
|
||||
__not_an_error
|
||||
};
|
||||
|
||||
// Temporary workaround
|
||||
constexpr auto CELL_OK = CellOk::CELL_OK;
|
||||
|
||||
enum CellError : u32
|
||||
{
|
||||
CELL_EAGAIN = 0x80010001, // The resource is temporarily unavailable
|
||||
|
@ -1,18 +1,12 @@
|
||||
#pragma once
|
||||
|
||||
struct SceOk
|
||||
enum SceNotAnError : s32
|
||||
{
|
||||
enum : s32
|
||||
{
|
||||
__not_an_error,
|
||||
SCE_OK = 0,
|
||||
|
||||
SCE_OK = 0
|
||||
};
|
||||
__not_an_error
|
||||
};
|
||||
|
||||
// Temporary workaround
|
||||
constexpr auto SCE_OK = SceOk::SCE_OK;
|
||||
|
||||
enum SceError : u32
|
||||
{
|
||||
SCE_ERROR_ERRNO_EPERM = 0x80010001,
|
||||
|
Loading…
Reference in New Issue
Block a user