mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 16:48:16 +00:00
[FLTMGR] Stub FltReleaseFileNameInformation()
This commit is contained in:
parent
c6b9ee5649
commit
f21a2a6cfb
2 changed files with 9 additions and 0 deletions
|
@ -103,3 +103,11 @@ FltGetDestinationFileNameInformation(
|
|||
*RetFileNameInformation = NULL;
|
||||
return 0;
|
||||
}
|
||||
|
||||
VOID
|
||||
FLTAPI
|
||||
FltReleaseFileNameInformation(
|
||||
_In_ PFLT_FILE_NAME_INFORMATION FileNameInformation)
|
||||
{
|
||||
UNREFERENCED_PARAMETER(FileNameInformation);
|
||||
}
|
||||
|
|
|
@ -23,4 +23,5 @@
|
|||
@ stdcall FltCloseCommunicationPort(ptr)
|
||||
@ stdcall FltAttachVolume(ptr ptr ptr ptr)
|
||||
@ stdcall FltGetDestinationFileNameInformation(ptr ptr ptr ptr long long ptr)
|
||||
@ stdcall FltReleaseFileNameInformation(ptr)
|
||||
|
||||
|
|
Loading…
Reference in a new issue