![]() |
| Home |
|
|
Function RTFRawDeviceIoControlFunction RTFRawDeviceIoControl calls the driver's IoControl function:
int RTFRawDeviceIoControl(int DeviceIndex,
UINT ControlCode,
void * Buffer,
UINT Length);
ParametersDeviceIndexThe zero-based index in RTFiles-32's device list. ControlCodeFunction code to pass to the driver. Please see function RTFDeviceIoControl for a list of available code. BufferData buffer to be passed to function IoControl. LengthLength parameter to be passed to function IoControl. return valueIf the function succeeds, it returns RTF_NO_ERROR or a ControlCode specfic positive value. If it fails, the return value is a negative error code.
|