// ntifs.h
typedef struct _BOOT_AREA_INFO {
ULONG BootSectorCount;
struct {
LARGE_INTEGER Offset;
};
__unnamed_struct_00b5_70 BootSectors[2];
} BOOT_AREA_INFO, *PBOOT_AREA_INFO;
View the official Windows Driver Kit DDI reference// winioctl.h
typedef struct _BOOT_AREA_INFO {
DWORD BootSectorCount;
struct {
LARGE_INTEGER Offset;
} BootSectors[2];
} BOOT_AREA_INFO, *PBOOT_AREA_INFO;
View the official Win32 API referenceNo description available.
The BOOT_AREA_INFO structure contains the output for the FSCTL_GET_BOOT_AREA_INFO control code.
BootSectorCountThe number of elements in the BootSectors array.
OffsetBootSectorsA variable length array of structures. Each structure contains an Offset member.
The location of a boot sector or a copy of a boot sector.
Contains the output for the FSCTL_GET_BOOT_AREA_INFO control code.
BootSectorCountNumber of elements in the BootSectors array.
OffsetBootSectorsA variable length array of structures each containing the following member.
The location of a boot sector or a copy of a boot sector.
typedef struct _BOOT_AREA_INFO {
DWORD BootSectorCount;
struct {
LARGE_INTEGER Offset;
} BootSectors[2];
} BOOT_AREA_INFO, *PBOOT_AREA_INFO;