// 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 referenceNo description available.
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.
TransportContains 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.
SourceContains 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.
DestinationContains 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.
FlipIndicates, 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.
Contains information that the IOCTL_CHANGER_MOVE_MEDIUM control code uses to move a piece of media to a destination.
TransportA CHANGER_ELEMENT structure that indicates which transport element to use for the move operation.
SourceA CHANGER_ELEMENT structure that indicates the element that contains the media that is to be moved.
DestinationA CHANGER_ELEMENT structure that indicates the element that is the destination of the media originally at Source.
FlipIf 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.