Leaked source code of windows server 2003
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.

19 lines
382 B

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