Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are there any complete examples of using winhttp in C on windows?

Tags:

c

windows

winhttp

I can find tons of examples in C++, but nothing that's written in just C. I am trying to connect to an http server, download the returned data, and then save it to a file. Is there a better way to do it on Windows? Should I not be using WinHttp or WinInet? Windows documentation for C seems to be extremely lacking on the internet. Thank you for your help.

like image 482
jacortinas Avatar asked Oct 15 '22 03:10

jacortinas


1 Answers

http://www.codeguru.com/cpp/i-n/internet/http/article.php/c6237
also this looks good and in C
http://msdn.microsoft.com/en-us/library/aa384270(v=VS.85).aspx#Downloading_resource
This question has also been asked and answered here
How to download a file with WinHTTP in C/C++?

like image 132
Romain Hippeau Avatar answered Oct 20 '22 23:10

Romain Hippeau