mirror of
https://github.com/reactos/reactos.git
synced 2025-07-24 18:43:37 +00:00
[FLTMGR] Stub FltAttachVolume()
This commit is contained in:
parent
b67887df10
commit
08c4954007
2 changed files with 13 additions and 0 deletions
|
@ -190,6 +190,18 @@ FltDetachVolume(
|
|||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
NTSTATUS
|
||||
FLTAPI
|
||||
FltAttachVolume(
|
||||
_Inout_ PFLT_FILTER Filter,
|
||||
_Inout_ PFLT_VOLUME Volume,
|
||||
_In_opt_ PCUNICODE_STRING InstanceName,
|
||||
_Outptr_opt_result_maybenull_ PFLT_INSTANCE *RetInstance)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
NTSTATUS
|
||||
FLTAPI
|
||||
FltGetVolumeName(
|
||||
|
|
|
@ -21,4 +21,5 @@
|
|||
@ stdcall FltGetFileNameInformation(ptr long ptr)
|
||||
@ stdcall FltCreateCommunicationPort(ptr ptr ptr ptr ptr ptr ptr long)
|
||||
@ stdcall FltCloseCommunicationPort(ptr)
|
||||
@ stdcall FltAttachVolume(ptr ptr ptr ptr)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue