#ifndef _NTRTL_H
NTSYSAPI
NTSTATUS
NTAPI
RtlDosPathNameToNtPathName_U_WithStatus(
_In_ PCWSTR DosFileName,
_Out_ PUNICODE_STRING NtFileName,
_Out_opt_ PWSTR *FilePart,
_Out_opt_ PRTL_RELATIVE_NAME_U RelativeName
);
View code on GitHubNTSTATUS RtlDosPathNameToNtPathName_U_WithStatus(
__in PCWSTR DosFileName,
__out PUNICODE_STRING NtFileName,
__deref_opt_out_opt PWSTR *FilePart,
__reserved PVOID Reserved
)
View the official Win32 development documentationThis function is documented in Windows SDK.
Converts a DOS path name to an NT path name.
A pointer to a DOS file name path.
A pointer to a reference-counted Unicode string structure containing a Win32-style NT path name.
If present, supplies a pointer to a variable which, on success, receives a pointer to the base name portion of the output NT path name.
Reserved.
An NTSTATUS code. For more information, see Using NTSTATUS values.
This function has no associated import library or header file; you must call it using the LoadLibrary and GetProcAddress functions. The API is exported from ntdll.dll.
| Requirement | Value |
|---|---|
| DLL | ntdll.dll |