blob: 2126dc6132c44d51c4e3f2c3d584f95c636a6736 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef DEF_PROCESS_IFACE_H
#define DEF_PROCESS_IFACE_H
#define PRIF_OBJTYPE 0x20
//S = static, GET = get, C = current, PR = process
#define PRIF_SGETCPR 0
#define PRIF_EXIT 0x01
#define PRIF_ALLOCPAGE 0x02
#define PRIF_FREEPAGE 0x03
#endif
|