2025-04-27 07:49:33 -04:00

19 lines
351 B
C++

#ifndef _IECON_HXX
#define _IECON_HXX
#include "anycon.hxx"
class CIEConnection :public CAnyConnection {
public:
CIEConnection (
BOOL bSecure,
INTERNET_PORT nServerPort);
virtual BOOL SendRequest(
HINTERNET hReq,
LPCTSTR lpszHdr,
CStream *pStream);
};
#endif