quote:
Originally posted by matty
URLDownloadToFile I do believe is a synchronous call meaning when it returns 0 for success the file is done.
Unfortunately, it's not.
quote:
Returns one of the following values.
S_OK - The download started successfully.
That means: it returns as soon as its started, from there you're supposed to monitor the progress through the callback function - which we can't do unfortunately.
Ugh, how I hate the lack of asynchronous callback support.