A still image minidriver's IStiDevice::RawWriteCommand method sends command information to a still image device.
STDMETHODIMP
RawWriteCommand(
LPVOID lpBuffer,
DWORD nNumberOfBytes,
LPOVERLAPPED lpOverlapped
);
If the operation succeeds, the method should return S_OK. Otherwise, it should return one of the STIERR-prefixed error codes defined in stierr.h.
Declared in stiusd.h. Include stiusd.h.
It is only necessary to call IStiUSD::RawWriteCommand if commands and data are written to a device by different methods. For other devices, IStiUSD::RawWriteData can be used for both commands and data. If the call is not implemented, it must return STIERR_UNSUPPORTED.
Implementation of this method, along with the meaning of buffer contents, are vendor-defined.