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`.