inet.h
上传用户:zexelpump
上传日期:2007-01-04
资源大小:22k
文件大小:0k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

Visual C++

  1. /*
  2.     Simple wrapper class for checking validity of a URL
  3. */
  4. #ifndef __INET_H__
  5. #define __INET_H__
  6. #include <wininet.h>
  7. class WinInet
  8. {
  9.     public:
  10.         WinInet();
  11.         ~WinInet();
  12.         BOOL IsConnected() const { return (InternetAttemptConnect(0)==ERROR_SUCCESS); }
  13.         BOOL CheckLink(LPCSTR pcszURL);
  14.     private:
  15.         HINTERNET m_hInternet;
  16. };
  17. #endif