TAPE_GET_MEDIA_PARAMETERS - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// minitape.h

typedef struct _TAPE_GET_MEDIA_PARAMETERS {
  LARGE_INTEGER Capacity;
  LARGE_INTEGER Remaining;
  ULONG         BlockSize;
  ULONG         PartitionCount;
  BOOLEAN       WriteProtected;
} TAPE_GET_MEDIA_PARAMETERS, *PTAPE_GET_MEDIA_PARAMETERS;
View the official Windows Driver Kit DDI reference
// ntddtape.h

typedef struct _TAPE_GET_MEDIA_PARAMETERS {
  LARGE_INTEGER Capacity;
  LARGE_INTEGER Remaining;
  ULONG         BlockSize;
  ULONG         PartitionCount;
  BOOLEAN       WriteProtected;
} TAPE_GET_MEDIA_PARAMETERS, *PTAPE_GET_MEDIA_PARAMETERS;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-minitape-_tape_get_media_parameters)

_TAPE_GET_MEDIA_PARAMETERS structure (minitape.h)

Description

The TAPE_GET_MEDIA_PARAMETERS structure is used in conjunction with the TapeMiniGetMediaParameters routine to retrieve tape media parameters.

Members

Capacity

Indicates the total number of bytes of user data the tape can hold.

Remaining

Indicates the number of bytes from the current position to the end of the tape.

BlockSize

Indicates the block size, in bytes, or zero if the drive is using variable block size.

PartitionCount

Indicates the number of partitions on the tape. If the tape is not partitioned, PartitionCount is 1.

WriteProtected

Is set to TRUE if the tape is write-protected.

See also

TapeMiniGetMediaParameters


Windows Driver Kit DDI reference (ns-ntddtape-_tape_get_media_parameters)

_TAPE_GET_MEDIA_PARAMETERS structure (ntddtape.h)

Description

The TAPE_GET_MEDIA_PARAMETERS structure is used in conjunction with the TapeMiniGetMediaParameters routine to retrieve tape media parameters.

Members

Capacity

Indicates the total number of bytes of user data the tape can hold.

Remaining

Indicates the number of bytes from the current position to the end of the tape.

BlockSize

Indicates the block size, in bytes, or zero if the drive is using variable block size.

PartitionCount

Indicates the number of partitions on the tape. If the tape is not partitioned, PartitionCount is 1.

WriteProtected

Is set to TRUE if the tape is write-protected.

See also

TapeMiniGetMediaParameters