11 lines
436 B
C
11 lines
436 B
C
#ifndef COSMOPOLITAN_LIBC_NT_ENUM_OFFERPRIORITY_H_
|
|
#define COSMOPOLITAN_LIBC_NT_ENUM_OFFERPRIORITY_H_
|
|
|
|
/* TODO(jart): Are these values correct? */
|
|
#define kNtVmOfferPriorityVeryLow 1 /* 0x00001000? */
|
|
#define kNtVmOfferPriorityLow 2 /* 0x00002000? */
|
|
#define kNtVmOfferPriorityBelowNormal 3 /* 0x00002000? */
|
|
#define kNtVmOfferPriorityNormal 4 /* 0x00002000? */
|
|
|
|
#endif /* COSMOPOLITAN_LIBC_NT_ENUM_OFFERPRIORITY_H_ */
|