#ifndef _NTRTL_H
//
// Path functions
//
/**
* The RtlDetermineDosPathNameType_U routine determines the type of Dos or Win32 path type for the specified filename.
*
* \param DosFileName A pointer to the buffer that contains the Dos or Win32 filename.
* \return The return value specifies the path type for the specified file.
*/
NTSYSAPI
RTL_PATH_TYPE
NTAPI
RtlDetermineDosPathNameType_U(
_In_ PCWSTR DosFileName
);
View code on GitHub
No description available.