11 lines
104 B
C
11 lines
104 B
C
|
#ifndef PROCESS_H
|
||
|
#define PROCESS_H
|
||
|
|
||
|
struct process {
|
||
|
void *prstart;
|
||
|
s32 prsize;
|
||
|
s32 pid;
|
||
|
}
|
||
|
|
||
|
#endif
|