FSCTL_GET_WOF_VERSION - NtDoc

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

// CTL_CODE(0x0009, 0x0da, METHOD_BUFFERED, FILE_ANY_ACCESS)
#define FSCTL_GET_WOF_VERSION 0x00090368
View the official Windows hardware development documentation

NtDoc

No description available.

Windows hardware development documentation (fsctl-get-wof-version)

FSCTL_GET_WOF_VERSION control code

The FSCTL_GET_WOF_VERSION I/O control code (IOCTL) is used to query the version of the driver used to support a particular provider.

To perform this operation, call FltFsControlFile or ZwFsControlFile with the following parameters.

BOOL
   WINAPI
   DeviceIoControl( (HANDLE)       hDevice,         // handle to device
                    (DWORD)        FSCTL_GET_WOF_VERSION, // dwIoControlCode
                    (LPDWORD)      lpInBuffer,      // input buffer
                    (DWORD)        nInBufferSize,   // size of input buffer
                    (LPDWORD)      lpOutBuffer,     // output buffer
                    (DWORD)        nOutBufferSize,  // size of output buffer
                    (LPDWORD)      lpBytesReturned, // number of bytes returned
                    (LPOVERLAPPED) lpOverlapped );  // OVERLAPPED structure

Parameters

Status block

If the operation completes successfully, DeviceIoControl returns a nonzero value.

If the operation fails or is pending, DeviceIoControl returns zero. To get extended error information, call GetLastError.

Requirements

Requirement type Requirement
Minimum supported client Windows 10
Header Ntifs.h (include Ntifs.h or Fltkernel.h)