Commit 454ba90a authored by Austin English's avatar Austin English Committed by Alexandre Julliard

ntoskrnl.exe: Add PsGetProcessWow64Process stub.

parent b618a6c6
...@@ -3991,13 +3991,28 @@ void WINAPI IoReleaseRemoveLockAndWaitEx(PIO_REMOVE_LOCK lock, PVOID tag, ULONG ...@@ -3991,13 +3991,28 @@ void WINAPI IoReleaseRemoveLockAndWaitEx(PIO_REMOVE_LOCK lock, PVOID tag, ULONG
FIXME("stub: %p %p %u\n", lock, tag, size); FIXME("stub: %p %p %u\n", lock, tag, size);
} }
/*********************************************************************
* DbgQueryDebugFilterState (NTOSKRNL.@)
*/
NTSTATUS WINAPI DbgQueryDebugFilterState(ULONG component, ULONG level) NTSTATUS WINAPI DbgQueryDebugFilterState(ULONG component, ULONG level)
{ {
FIXME("stub: %d %d\n", component, level); FIXME("stub: %d %d\n", component, level);
return STATUS_NOT_IMPLEMENTED; return STATUS_NOT_IMPLEMENTED;
} }
/*********************************************************************
* ExReleaseResourceLite (NTOSKRNL.@)
*/
void WINAPI ExReleaseResourceLite(PERESOURCE resource) void WINAPI ExReleaseResourceLite(PERESOURCE resource)
{ {
FIXME("stub: %p\n", resource); FIXME("stub: %p\n", resource);
} }
/*********************************************************************
* PsGetProcessWow64Process (NTOSKRNL.@)
*/
PVOID WINAPI PsGetProcessWow64Process(PEPROCESS process)
{
FIXME("stub: %p\n", process);
return NULL;
}
...@@ -886,6 +886,7 @@ ...@@ -886,6 +886,7 @@
@ stub PsGetProcessSessionId @ stub PsGetProcessSessionId
@ stub PsGetProcessWin32Process @ stub PsGetProcessWin32Process
@ stub PsGetProcessWin32WindowStation @ stub PsGetProcessWin32WindowStation
@ stdcall -arch=x86_64 PsGetProcessWow64Process(ptr)
@ stub PsGetThreadFreezeCount @ stub PsGetThreadFreezeCount
@ stub PsGetThreadHardErrorsAreDisabled @ stub PsGetThreadHardErrorsAreDisabled
@ stub PsGetThreadId @ stub PsGetThreadId
......
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