mirror of https://github.com/decompals/wibo.git
12 lines
235 B
C
12 lines
235 B
C
|
#include <cstdint>
|
||
|
#include <sched.h>
|
||
|
|
||
|
namespace processes {
|
||
|
struct Process {
|
||
|
pid_t pid;
|
||
|
uint32_t exitCode;
|
||
|
};
|
||
|
|
||
|
void *allocProcessHandle(pid_t pid);
|
||
|
Process* processFromHandle(void* hHandle, bool pop);
|
||
|
}
|