mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 15:03:34 +00:00
14 lines
364 B
C
14 lines
364 B
C
|
#ifndef COSMOPOLITAN_LIBC_NT_STRUCT_SYSTEMHANDLEENTRY_H_
|
||
|
#define COSMOPOLITAN_LIBC_NT_STRUCT_SYSTEMHANDLEENTRY_H_
|
||
|
|
||
|
struct NtSystemHandleEntry {
|
||
|
uint32_t OwnerPid;
|
||
|
unsigned char ObjectType;
|
||
|
unsigned char HandleFlags;
|
||
|
unsigned short HandleValue;
|
||
|
void *ObjectPointer;
|
||
|
uint32_t AccessMask;
|
||
|
};
|
||
|
|
||
|
#endif /* COSMOPOLITAN_LIBC_NT_STRUCT_SYSTEMHANDLEENTRY_H_ */
|