13 Dec
2021
13 Dec
'21
9:24 p.m.
Hi Paul, On 12/13/21 10:19 PM, Paul Gofman wrote:
+/********************************************************************** + * wow64_NtSetDebugFilterState + */ +NTSTATUS WINAPI wow64_NtSetDebugFilterState( UINT *args ) +{ + ULONG component_id = get_ulong( &args ); + ULONG level = get_ulong( &args ); + BOOLEAN state = get_ulong( &args ); + + NtSetDebugFilterState( component_id, level, state );
You're missing 'return' here. Thanks, Jacek