ntoskrnl: Add FsRtlIsNameInExpression stub.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=41039 Signed-off-by: Jactry Zeng <jzeng@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
93fb279f4f
commit
c43030b664
|
@ -2047,6 +2047,16 @@ NTSTATUS WINAPI ExInitializeZone(PZONE_HEADER Zone,
|
|||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* FsRtlIsNameInExpression (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
BOOLEAN WINAPI FsRtlIsNameInExpression(PUNICODE_STRING expression, PUNICODE_STRING name,
|
||||
BOOLEAN ignore, PWCH upcase)
|
||||
{
|
||||
FIXME("stub: %p %p %d %p\n", expression, name, ignore, upcase);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* FsRtlRegisterUncProvider (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
|
|
|
@ -234,7 +234,7 @@
|
|||
@ stub FsRtlIsDbcsInExpression
|
||||
@ stub FsRtlIsFatDbcsLegal
|
||||
@ stub FsRtlIsHpfsDbcsLegal
|
||||
@ stub FsRtlIsNameInExpression
|
||||
@ stdcall FsRtlIsNameInExpression(ptr ptr long ptr)
|
||||
@ stub FsRtlIsNtstatusExpected
|
||||
@ stub FsRtlIsPagingFile
|
||||
@ stub FsRtlIsTotalDeviceFailure
|
||||
|
|
|
@ -129,6 +129,7 @@ typedef struct _FS_FILTER_CALLBACKS
|
|||
PFS_FILTER_COMPLETION_CALLBACK PostReleaseForModifiedPageWriter;
|
||||
} FS_FILTER_CALLBACKS, *PFS_FILTER_CALLBACKS;
|
||||
|
||||
BOOLEAN WINAPI FsRtlIsNameInExpression(PUNICODE_STRING, PUNICODE_STRING, BOOLEAN, PWCH);
|
||||
NTSTATUS WINAPI ObQueryNameString(PVOID,POBJECT_NAME_INFORMATION,ULONG,PULONG);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue