Commit 0b03dc93 authored by Bruno Jesus's avatar Bruno Jesus Committed by Alexandre Julliard

ws2_32: Add parameters TRACE for WS_EnumProtocols.

parent 52b1adcd
......@@ -1704,6 +1704,9 @@ static INT WS_EnumProtocols( BOOL unicode, const INT *protocols, LPWSAPROTOCOL_I
size = items * (unicode ? sizeof(WSAPROTOCOL_INFOW) : sizeof(WSAPROTOCOL_INFOA));
TRACE("unicode %d, protocols %p, buffer %p, length %p %d, items %d, required %d\n",
unicode, protocols, buffer, len, len ? *len : 0, items, size);
if (*len < size || !buffer)
{
*len = size;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment