mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
[FLTMGR] Stub FltGetFileNameInformation()
This commit is contained in:
parent
c5a314b0f2
commit
1c5cc0ff08
2 changed files with 14 additions and 0 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue