2020-06-15 07:18:57 -07:00
|
|
|
#ifndef COSMOPOLITAN_LIBC_NT_NT_SECTIONS_H_
|
|
|
|
#define COSMOPOLITAN_LIBC_NT_NT_SECTIONS_H_
|
|
|
|
#include "libc/nt/enum/status.h"
|
2020-11-25 08:19:00 -08:00
|
|
|
#include "libc/nt/struct/objectattributes.h"
|
2020-06-15 07:18:57 -07:00
|
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
|
|
COSMOPOLITAN_C_START_
|
|
|
|
|
|
|
|
NtStatus NtCreateSection(int64_t *out_SectionHandle, uint32_t DesiredAccess,
|
|
|
|
struct NtObjectAttributes *ObjectAttributes,
|
|
|
|
int64_t *opt_SectionSize, uint32_t Protect,
|
|
|
|
uint32_t Attributes, int64_t FileHandle);
|
|
|
|
NtStatus NtOpenSection(int64_t *out_SectionHandle, uint32_t DesiredAccess,
|
|
|
|
struct NtObjectAttributes *ObjectAttributes);
|
|
|
|
NtStatus NtMapViewOfSection(int64_t SectionHandle, int64_t ProcessHandle,
|
|
|
|
void **inout_BaseAddress, uint32_t *ZeroBits,
|
|
|
|
size_t CommitSize, int64_t *opt_inout_SectionOffset,
|
2020-11-25 08:19:00 -08:00
|
|
|
size_t *inout_ViewSize, int InheritDisposition,
|
2020-06-15 07:18:57 -07:00
|
|
|
uint32_t AllocationType, uint32_t Protect);
|
|
|
|
NtStatus NtUnmapViewOfSection(int64_t ProcessHandle, void *BaseAddress);
|
2020-11-25 08:19:00 -08:00
|
|
|
NtStatus NtQuerySection(int64_t SectionHandle, int SectionInformationClass,
|
2020-06-15 07:18:57 -07:00
|
|
|
void *out_SectionInformation,
|
|
|
|
uint32_t SectionInformationLength,
|
|
|
|
uint32_t *opt_out_ResultLength);
|
|
|
|
|
|
|
|
COSMOPOLITAN_C_END_
|
|
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
|
|
#endif /* COSMOPOLITAN_LIBC_NT_NT_SECTIONS_H_ */
|