Commit 6b9f60da authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

winhttp: Deliver status notifications to the application.

parent f8cd30e9
......@@ -39,7 +39,9 @@ static void set_last_error( DWORD error )
void send_callback( object_header_t *hdr, DWORD status, LPVOID info, DWORD buflen )
{
FIXME("%p, %u, %p, %u\n", hdr, status, info, buflen);
TRACE("%p, %u, %p, %u\n", hdr, status, info, buflen);
if (hdr->notify_mask & status) hdr->callback( hdr->handle, hdr->context, status, info, buflen );
}
/***********************************************************************
......
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