12 Jun
2024
12 Jun
'24
3:50 p.m.
Alex Henrie (@alexhenrie) commented about dlls/dnsapi/main.c:
FIXME( "(%p, %#lx, %p, %p, %p) stub\n", set, options, context, servers, reserved ); return ERROR_SUCCESS; } + +/****************************************************************************** + * DnsServiceBrowse [DNSAPI.@] + * + */ +DNS_STATUS WINAPI DnsServiceBrowse( PDNS_SERVICE_BROWSE_REQUEST pRequest, PDNS_SERVICE_CANCEL pCancel)
Please avoid using Hungarian notation when you don't have to. Here, you can write `request` and `cancel` instead of `pRequest` and `pCancel`. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/5831#note_72959