[PATCH v2] ntdll: Add stub for NtSetDebugFilterState().

Jacek Caban jacek at codeweavers.com
Mon Dec 13 15:24:59 CST 2021


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




More information about the wine-devel mailing list