CHANGER_MOVE_MEDIUM - NtDoc

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

typedef struct _CHANGER_MOVE_MEDIUM {
  CHANGER_ELEMENT Transport;
  CHANGER_ELEMENT Source;
  CHANGER_ELEMENT Destination;
  BOOLEAN         Flip;
} CHANGER_MOVE_MEDIUM, *PCHANGER_MOVE_MEDIUM;
View the official Windows Driver Kit DDI reference
// winioctl.h

typedef struct _CHANGER_MOVE_MEDIUM {
  CHANGER_ELEMENT Transport;
  CHANGER_ELEMENT Source;
  CHANGER_ELEMENT Destination;
  BOOLEAN         Flip;
} CHANGER_MOVE_MEDIUM, *PCHANGER_MOVE_MEDIUM;
View the official Win32 API reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-ntddchgr-_changer_move_medium)

_CHANGER_MOVE_MEDIUM structure

Description

The CHANGER_MOVE_MEDIUM structure is used in conjunction with the IOCTL_CHANGER_MOVE_MEDIUM request to move a piece of media from a source element to a destination.

Members

Transport

Contains a structure of type CHANGER_ELEMENT that indicates which transport element to use for the move operation. The ElementType member of the CHANGER_ELEMENT structure must be assigned a value of ChangerTransport.

Source

Contains a structure of type CHANGER_ELEMENT that indicates the element that contains the piece of media to be moved to Destination. The ElementType must be ChangerDrive, ChangerTransport, ChangerSlot, or ChangerIEPort.

Destination

Contains a structure of type CHANGER_ELEMENT that indicates the destination of the piece of media originally at Source. The ElementType must be ChangerDrive, ChangerTransport, ChangerSlot, or ChangerIEPort.

Flip

Indicates, when TRUE, that the piece of media should be flipped. When FALSE the media is not ready to be flipped. This member is valid only if CHANGER_MEDIUM_FLIP is set in the Features0 member of the GET_CHANGER_PARAMETERS structure.

See also

CHANGER_ELEMENT

ChangerMoveMedium

GET_CHANGER_PARAMETERS

IOCTL_CHANGER_MOVE_MEDIUM


Win32 API reference (ns-winioctl-changer_move_medium)

CHANGER_MOVE_MEDIUM structure

Description

Contains information that the IOCTL_CHANGER_MOVE_MEDIUM control code uses to move a piece of media to a destination.

Members

Transport

A CHANGER_ELEMENT structure that indicates which transport element to use for the move operation.

Source

A CHANGER_ELEMENT structure that indicates the element that contains the media that is to be moved.

Destination

A CHANGER_ELEMENT structure that indicates the element that is the destination of the media originally at Source.

Flip

If this member is TRUE, the media should be flipped. Otherwise, it should not. This member is valid only if the Features0 member of the GET_CHANGER_PARAMETERS structure is CHANGER_MEDIUM_FLIP.

See also

CHANGER_ELEMENT

IOCTL_CHANGER_MOVE_MEDIUM