On 12/14/21 00:24, Jacek Caban wrote:
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.
Oh, indeed, thanks.