ntoskrnl.exe: Add DbgQueryDebugFilterState stub.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45655 Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
0c790adf30
commit
6b3f665787
|
@ -3722,3 +3722,9 @@ void WINAPI IoReleaseRemoveLockAndWaitEx(PIO_REMOVE_LOCK lock, PVOID tag, ULONG
|
|||
{
|
||||
FIXME("stub: %p %p %u\n", lock, tag, size);
|
||||
}
|
||||
|
||||
NTSTATUS WINAPI DbgQueryDebugFilterState(ULONG component, ULONG level)
|
||||
{
|
||||
FIXME("stub: %d %d\n", component, level);
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
|
|
@ -111,7 +111,7 @@
|
|||
@ varargs DbgPrintEx(long long str)
|
||||
@ stub DbgPrintReturnControlC
|
||||
@ stub DbgPrompt
|
||||
@ stub DbgQueryDebugFilterState
|
||||
@ stdcall DbgQueryDebugFilterState(long long)
|
||||
@ stub DbgSetDebugFilterState
|
||||
@ stdcall ExAcquireResourceExclusiveLite(ptr long)
|
||||
@ stub ExAcquireResourceSharedLite
|
||||
|
|
|
@ -1367,6 +1367,7 @@ static inline void IoSetCompletionRoutine(IRP *irp, PIO_COMPLETION_ROUTINE routi
|
|||
#define SYMBOLIC_LINK_QUERY 0x0001
|
||||
#define SYMBOLIC_LINK_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED | 0x1)
|
||||
|
||||
NTSTATUS WINAPI DbgQueryDebugFilterState(ULONG, ULONG);
|
||||
void WINAPI ExAcquireFastMutexUnsafe(PFAST_MUTEX);
|
||||
PVOID WINAPI ExAllocatePool(POOL_TYPE,SIZE_T);
|
||||
PVOID WINAPI ExAllocatePoolWithQuota(POOL_TYPE,SIZE_T);
|
||||
|
|
Loading…
Reference in New Issue