mirror of https://github.com/tongzx/nt5src
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.
33 lines
602 B
33 lines
602 B
#ifndef __ICQ_PRX_H
|
|
#define __ICQ_PRX_H
|
|
|
|
|
|
class IcqPrx : virtual public COMPONENT_SYNC
|
|
{
|
|
public:
|
|
IcqPrx();
|
|
|
|
~IcqPrx();
|
|
|
|
void ComponentCleanUpRoutine(void);
|
|
|
|
void StopSync(void);
|
|
|
|
ULONG RunIcq99Proxy(ULONG BoundaryIp);
|
|
|
|
ULONG ReadFromClientCompletionRoutine(
|
|
ULONG ErrorCode,
|
|
ULONG BytesTransferred,
|
|
PNH_BUFFER Bufferp
|
|
);
|
|
protected:
|
|
PCNhSock m_Socketp;
|
|
|
|
IPrimaryControlChannel * m_ControlChannelp;
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif //__ICQ_PRX_H
|