inet.h
资源名称:htmlpars.zip [点击查看]
上传用户:zexelpump
上传日期:2007-01-04
资源大小:22k
文件大小:0k
源码类别:
WEB源码(ASP,PHP,...)
开发平台:
Visual C++
- /*
- Simple wrapper class for checking validity of a URL
- */
- #ifndef __INET_H__
- #define __INET_H__
- #include <wininet.h>
- class WinInet
- {
- public:
- WinInet();
- ~WinInet();
- BOOL IsConnected() const { return (InternetAttemptConnect(0)==ERROR_SUCCESS); }
- BOOL CheckLink(LPCSTR pcszURL);
- private:
- HINTERNET m_hInternet;
- };
- #endif