Commit 8390af0a authored by Alexandre Julliard's avatar Alexandre Julliard

wow64cpu: Add a stub for BTCpuTurboThunkControl().

parent 3af86074
......@@ -248,3 +248,14 @@ NTSTATUS WINAPI BTCpuResetToConsistentState( EXCEPTION_POINTERS *ptrs )
context->Rsp = context->R14;
return STATUS_SUCCESS;
}
/**********************************************************************
* BTCpuTurboThunkControl (wow64cpu.@)
*/
NTSTATUS WINAPI BTCpuTurboThunkControl( ULONG enable )
{
if (enable) return STATUS_NOT_SUPPORTED;
/* we don't have turbo thunks yet */
return STATUS_SUCCESS;
}
......@@ -4,6 +4,6 @@
@ stdcall BTCpuResetToConsistentState(ptr)
@ stdcall BTCpuSetContext(long long ptr ptr)
@ stdcall BTCpuSimulate()
#@ stub BTCpuTurboThunkControl
@ stdcall BTCpuTurboThunkControl(long)
#@ stub TurboDispatchJumpAddressEnd
#@ stub TurboDispatchJumpAddressStart
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