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.

33 lines
602 B

  1. #ifndef __ICQ_PRX_H
  2. #define __ICQ_PRX_H
  3. class IcqPrx : virtual public COMPONENT_SYNC
  4. {
  5. public:
  6. IcqPrx();
  7. ~IcqPrx();
  8. void ComponentCleanUpRoutine(void);
  9. void StopSync(void);
  10. ULONG RunIcq99Proxy(ULONG BoundaryIp);
  11. ULONG ReadFromClientCompletionRoutine(
  12. ULONG ErrorCode,
  13. ULONG BytesTransferred,
  14. PNH_BUFFER Bufferp
  15. );
  16. protected:
  17. PCNhSock m_Socketp;
  18. IPrimaryControlChannel * m_ControlChannelp;
  19. };
  20. #endif //__ICQ_PRX_H