How to do HTTP transfers with MFC/C++?
How do you do HTTP transfers in MFC?
Which library would you开发者_JAVA技巧 use to access HTTP resources in MFC?
See the MFC wrappers for the WinInet library.
Here are three possible ways:
- Write the socket code yourself.
- Use the libcurl library.
- Use the C++ abstraction for libcurl called cURLpp.
精彩评论