Commit 6b3f6657 authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

ntoskrnl.exe: Add DbgQueryDebugFilterState stub.

parent 0c790adf
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment