mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[FLTMGR] Stub FltGetDestinationFileNameInformation()
This commit is contained in:
parent
08c4954007
commit
c6b9ee5649
2 changed files with 22 additions and 0 deletions
|
@ -82,3 +82,24 @@ FltGetFileNameInformation(
|
|||
*FileNameInformation = NULL;
|
||||
return 0;
|
||||
}
|
||||
|
||||
NTSTATUS
|
||||
FLTAPI
|
||||
FltGetDestinationFileNameInformation(
|
||||
_In_ PFLT_INSTANCE Instance,
|
||||
_In_ PFILE_OBJECT FileObject,
|
||||
_In_opt_ HANDLE RootDirectory,
|
||||
_In_reads_bytes_(FileNameLength) PWSTR FileName,
|
||||
_In_ ULONG FileNameLength,
|
||||
_In_ FLT_FILE_NAME_OPTIONS NameOptions,
|
||||
_Outptr_ PFLT_FILE_NAME_INFORMATION *RetFileNameInformation)
|
||||
{
|
||||
UNREFERENCED_PARAMETER(Instance);
|
||||
UNREFERENCED_PARAMETER(FileObject);
|
||||
UNREFERENCED_PARAMETER(RootDirectory);
|
||||
UNREFERENCED_PARAMETER(FileName);
|
||||
UNREFERENCED_PARAMETER(FileNameLength);
|
||||
UNREFERENCED_PARAMETER(NameOptions);
|
||||
*RetFileNameInformation = NULL;
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -22,4 +22,5 @@
|
|||
@ stdcall FltCreateCommunicationPort(ptr ptr ptr ptr ptr ptr ptr long)
|
||||
@ stdcall FltCloseCommunicationPort(ptr)
|
||||
@ stdcall FltAttachVolume(ptr ptr ptr ptr)
|
||||
@ stdcall FltGetDestinationFileNameInformation(ptr ptr ptr ptr long long ptr)
|
||||
|
||||
|
|
Loading…
Reference in a new issue