mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-07 15:31:26 +12:00
Added CELL_CANCEL
This commit is contained in:
parent
3a1f1dbc1a
commit
81c8d3f27a
2 changed files with 7 additions and 18 deletions
|
@ -1,17 +1,12 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
struct CellOk
|
enum CellNotAnError : s32
|
||||||
{
|
{
|
||||||
enum : s32
|
CELL_OK = 0,
|
||||||
{
|
CELL_CANCEL = 1,
|
||||||
__not_an_error,
|
|
||||||
|
|
||||||
CELL_OK = 0
|
__not_an_error
|
||||||
};
|
};
|
||||||
};
|
|
||||||
|
|
||||||
// Temporary workaround
|
|
||||||
constexpr auto CELL_OK = CellOk::CELL_OK;
|
|
||||||
|
|
||||||
enum CellError : u32
|
enum CellError : u32
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,17 +1,11 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
struct SceOk
|
enum SceNotAnError : s32
|
||||||
{
|
{
|
||||||
enum : s32
|
SCE_OK = 0,
|
||||||
{
|
|
||||||
__not_an_error,
|
|
||||||
|
|
||||||
SCE_OK = 0
|
__not_an_error
|
||||||
};
|
};
|
||||||
};
|
|
||||||
|
|
||||||
// Temporary workaround
|
|
||||||
constexpr auto SCE_OK = SceOk::SCE_OK;
|
|
||||||
|
|
||||||
enum SceError : u32
|
enum SceError : u32
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue