// wdfiotarget.h
WDF_IO_TARGET_STATE WdfIoTargetGetState(
[in] WDFIOTARGET IoTarget
);
View the official Windows Driver Kit DDI referenceNo description available.
[Applies to KMDF and UMDF]
The WdfIoTargetGetState method returns state information for a local or remote I/O target.
IoTarget [in]A handle to a local or remote I/O target object that was obtained from a previous call to WdfDeviceGetIoTarget or WdfIoTargetCreate or from a method that a specialized I/O target supplies.
WdfIoTargetGetState returns a WDF_IO_TARGET_STATE-typed value that indicates the state of the specified I/O target.
A bug check occurs if the driver supplies an invalid object handle.
For more information about WdfIoTargetGetState, see Controlling a General I/O Target's State.
For more information about I/O targets, see Using I/O Targets.
The following code example obtains state information for a USB I/O target.
WDF_IO_TARGET_STATE ioTargetState;
ioTargetState = WdfIoTargetGetState(WdfUsbTargetPipeGetIoTarget(pipeHandle));