SECTION_BASIC_INFORMATION - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTMMAPI_H

typedef struct _SECTION_BASIC_INFORMATION
{
    PVOID BaseAddress;
    ULONG AllocationAttributes;
    LARGE_INTEGER MaximumSize;
} SECTION_BASIC_INFORMATION, *PSECTION_BASIC_INFORMATION;

#endif

View code on GitHub

Structure SECTION_BASIC_INFORMATION is returned as a result of call NtQuerySection with SectionBasicInformation information class.

Unknown

(?), always set to zero.

SectionAttributes

Can be one or combination of:

SectionSize

Size of section, in bytes. This value equals to section's size declared in a call to NtCreateSection or NtExtendSection.

Documented by

See also