Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
322 B

  1. #ifndef _ANONYCON_HXX
  2. #define _ANONYCON_HXX
  3. #include "anycon.hxx"
  4. class CAnonymousConnection :public CAnyConnection {
  5. public:
  6. CAnonymousConnection (
  7. BOOL bSecure,
  8. INTERNET_PORT nServerPort,
  9. BOOL bIgnoreSecurityDlg);
  10. HINTERNET OpenRequest (
  11. LPTSTR lpszUrl);
  12. };
  13. #endif