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.

18 lines
333 B

  1. #ifndef _IECON_HXX
  2. #define _IECON_HXX
  3. #include "anycon.hxx"
  4. class CIEConnection :public CAnyConnection {
  5. public:
  6. CIEConnection (
  7. BOOL bSecure,
  8. INTERNET_PORT nServerPort);
  9. virtual BOOL SendRequest(
  10. HINTERNET hReq,
  11. LPCTSTR lpszHdr,
  12. CStream *pStream);
  13. };
  14. #endif