C ++ WinInet Wrapper for Windows Mobile
Environment: Win32, C ++ / VS2008
I get the need to make HTTP (not HTTPS) requests from the internet using Windows Mobile phone and save time + reinvent the wheel, wondering if anyone here could kindly share a simple C ++ (Win32?) WinInet wrapper or similar class?
The closest I've found so far with google is on codeproject , but wondered if someone here could implement even better.
Thanks. :)
a source to share
The WinInet interface on Windows is the same as on Windows CE. And it's disgustingly easy to program. Why do you need a C ++ wrapper for a really simple C API before you can proceed?
If you need help with WinInet, ask a real question.
In the simplest case, using WinInet will start with InternetOpen, followed by InternetOpenUrl and InternetReadFile. Creating a class to access it is an exercise left to the reader.
a source to share