mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-12 09:17:53 +00:00
12 lines
292 B
C
12 lines
292 B
C
|
#ifndef COSMOPOLITAN_LIBC_NT_GENERICMAPPING_H_
|
||
|
#define COSMOPOLITAN_LIBC_NT_GENERICMAPPING_H_
|
||
|
|
||
|
struct NtGenericMapping {
|
||
|
unsigned int GenericRead;
|
||
|
unsigned int GenericWrite;
|
||
|
unsigned int GenericExecute;
|
||
|
unsigned int GenericAll;
|
||
|
};
|
||
|
|
||
|
#endif /* COSMOPOLITAN_LIBC_NT_GENERICMAPPING_H_ */
|