mirror of
https://github.com/reactos/reactos.git
synced 2026-06-01 17:00:51 +08:00
[FLTMGR] Stub FltGetFileNameInformation()
This commit is contained in:
@@ -69,3 +69,16 @@ FltGetFileNameInformationUnsafe(
|
||||
*FileNameInformation = NULL;
|
||||
return 0;
|
||||
}
|
||||
|
||||
NTSTATUS
|
||||
FLTAPI
|
||||
FltGetFileNameInformation(
|
||||
_In_ PFLT_CALLBACK_DATA CallbackData,
|
||||
_In_ FLT_FILE_NAME_OPTIONS NameOptions,
|
||||
_Outptr_ PFLT_FILE_NAME_INFORMATION *FileNameInformation)
|
||||
{
|
||||
UNREFERENCED_PARAMETER(CallbackData);
|
||||
UNREFERENCED_PARAMETER(NameOptions);
|
||||
*FileNameInformation = NULL;
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -18,4 +18,5 @@
|
||||
@ stdcall FltCreateFile(ptr ptr ptr long ptr ptr ptr long long long long ptr long long)
|
||||
@ stdcall FltDetachVolume(ptr ptr ptr)
|
||||
@ stdcall FltGetVolumeName(ptr ptr ptr)
|
||||
@ stdcall FltGetFileNameInformation(ptr long ptr)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user