Non voglio tediarti ancora ed abusare della tua gentilezza. ora cosi è giusto?
#include <iostream>
#include <windows.h>
#include <tchar.h>
#include <urlmon.h>
#include "stdafx.h"
#pragma comment(lib,"urlmon.lib")
int main()
{
CoInitializeEx(0,COINIT_APARTMENTTHREADED);
TCHAR URL[] = _T("http://www.google.com/index.html");
TCHAR file[] = _T("C:/index.html");
URLDownloadToFile(NULL,URL,file,0,NULL);
CoUninitialize();
}
a me non me lo compila.