BOOT_AREA_INFO - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-ntifs-_boot_area_info)

_BOOT_AREA_INFO structure

Description

The BOOT_AREA_INFO structure contains the output for the FSCTL_GET_BOOT_AREA_INFO control code.

Members

BootSectorCount

The number of elements in the BootSectors array.

Offset

BootSectors

A variable length array of structures. Each structure contains an Offset member.

Offset

The location of a boot sector or a copy of a boot sector.

See also

FSCTL_GET_BOOT_AREA_INFO


Win32 API reference (ns-winioctl-boot_area_info)

BOOT_AREA_INFO structure

Description

Contains the output for the FSCTL_GET_BOOT_AREA_INFO control code.

Members

BootSectorCount

Number of elements in the BootSectors array.

Offset

BootSectors

A variable length array of structures each containing the following member.

Offset

The location of a boot sector or a copy of a boot sector.

Syntax

typedef struct _BOOT_AREA_INFO {
  DWORD                    BootSectorCount;
  struct {
    LARGE_INTEGER Offset;
  } BootSectors[2];
} BOOT_AREA_INFO, *PBOOT_AREA_INFO;

See also

FSCTL_GET_BOOT_AREA_INFO