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

Paul Gofman pgofman at codeweavers.com
Mon Dec 13 15:27:33 CST 2021


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.




More information about the wine-devel mailing list