2022-03-20 15:01:14 +00:00
|
|
|
#ifndef COSMOPOLITAN_LIBC_INTRIN_DESCRIBEFLAGS_INTERNAL_H_
|
|
|
|
#define COSMOPOLITAN_LIBC_INTRIN_DESCRIBEFLAGS_INTERNAL_H_
|
|
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
|
|
COSMOPOLITAN_C_START_
|
2022-04-15 06:39:48 +00:00
|
|
|
#include "libc/nt/struct/securityattributes.h"
|
2022-03-20 15:01:14 +00:00
|
|
|
|
|
|
|
struct thatispacked DescribeFlags {
|
|
|
|
unsigned flag;
|
|
|
|
const char *name;
|
|
|
|
};
|
|
|
|
|
|
|
|
const char *DescribeFlags(char *, size_t, struct DescribeFlags *, size_t,
|
|
|
|
const char *, unsigned);
|
2022-04-13 05:11:00 +00:00
|
|
|
|
|
|
|
const char *DescribeMapFlags(int);
|
|
|
|
const char *DescribeProtFlags(int);
|
|
|
|
const char *DescribeRemapFlags(int);
|
2022-04-18 07:01:26 +00:00
|
|
|
const char *DescribeSeccompOperationFlags(int);
|
|
|
|
const char *DescribePollFlags(char *, size_t, int);
|
2022-04-13 05:11:00 +00:00
|
|
|
|
2022-03-20 15:01:14 +00:00
|
|
|
const char *DescribeNtPageFlags(uint32_t);
|
2022-04-15 06:39:48 +00:00
|
|
|
const char *DescribeNtStartFlags(uint32_t);
|
2022-03-20 15:01:14 +00:00
|
|
|
const char *DescribeNtFileMapFlags(uint32_t);
|
2022-04-13 15:49:17 +00:00
|
|
|
const char *DescribeNtFiletypeFlags(uint32_t);
|
2022-04-15 06:39:48 +00:00
|
|
|
const char *DescribeNtPipeOpenFlags(uint32_t);
|
|
|
|
const char *DescribeNtPipeModeFlags(uint32_t);
|
2022-03-20 15:01:14 +00:00
|
|
|
const char *DescribeNtFileShareFlags(uint32_t);
|
|
|
|
const char *DescribeNtFileAccessFlags(uint32_t);
|
2022-04-12 06:35:48 +00:00
|
|
|
const char *DescribeNtProcessAccessFlags(uint32_t);
|
2022-04-15 06:39:48 +00:00
|
|
|
const char *DescribeNtCreationDisposition(uint32_t);
|
2022-04-12 12:20:17 +00:00
|
|
|
const char *DescribeNtConsoleModeInputFlags(uint32_t);
|
|
|
|
const char *DescribeNtConsoleModeOutputFlags(uint32_t);
|
2022-04-15 06:39:48 +00:00
|
|
|
const char *DescribeNtFileFlagsAndAttributes(uint32_t);
|
|
|
|
const char *DescribeNtSecurityAttributes(struct NtSecurityAttributes *);
|
2022-03-20 15:01:14 +00:00
|
|
|
|
|
|
|
COSMOPOLITAN_C_END_
|
|
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
|
|
#endif /* COSMOPOLITAN_LIBC_INTRIN_DESCRIBEFLAGS_INTERNAL_H_ */
|