#include
<
urlmon.h
>
#pragma link"w32inet.lib"
int main()
{
HRESULThRet = URLDownloadToFile( 0 , " http://www.1111.com/abc.exe " , " d:\abc.exe " , 0 , 0 );
if (hRet == S_OK)
{
printf( " DownloadOK! " );
}
else
{
printf( " DownloadFailed! " );
}
return 0 ;
}
#pragma link"w32inet.lib"
int main()
{
HRESULThRet = URLDownloadToFile( 0 , " http://www.1111.com/abc.exe " , " d:\abc.exe " , 0 , 0 );
if (hRet == S_OK)
{
printf( " DownloadOK! " );
}
else
{
printf( " DownloadFailed! " );
}
return 0 ;
}