What is the last parameter in InternetReadFileExW used for?
According to the documentation:
A caller supplied context value used for asynchronous operations.
but I am calling it in synchronous more like so:
if( !InternetReadFileExW(hRequest,(LPINTERNET_BUFFERSW)&net_buffer, IRF_SYNC, NULL))
So, what should I use as the last argument ?