// ntifs.h
typedef struct _QUERY_PATH_REQUEST {
ULONG PathNameLength;
PIO_SECURITY_CONTEXT SecurityContext;
WCHAR FilePathName[1];
} QUERY_PATH_REQUEST, *PQUERY_PATH_REQUEST;
View the official Windows Driver Kit DDI referenceNo description available.
The QUERY_PATH_REQUEST structure contains the prefix resolution request for IOCTL_REDIR_QUERY_PATH.
PathNameLengthThe length, in bytes, of the Unicode string contained in FilePathName.
SecurityContextA pointer to the security context.
FilePathNameA non-NULL terminated Unicode string of PathNameLength bytes with the form \\\\<*server*>\\<*share*>\\<*path*>.