wow64cpu: Add a stub for BTCpuTurboThunkControl().
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
3af8607430
commit
8390af0afe
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue