mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
12 lines
184 B
C++
12 lines
184 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <cstdint>
|
||
|
|
|
||
|
|
namespace orbis {
|
||
|
|
enum class ProcessState : std::uint32_t {
|
||
|
|
NEW, // In creation
|
||
|
|
NORMAL, // threads can be run
|
||
|
|
ZOMBIE
|
||
|
|
};
|
||
|
|
} // namespace orbis
|