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.

47 lines
840 B

  1. /*
  2. * File: cmember.h
  3. *
  4. *
  5. *
  6. * Revision History:
  7. *
  8. * 05/29/98 mikev created
  9. */
  10. #ifndef _CMEMBER_H
  11. #define _CMEMBER_H
  12. /*
  13. * Class definitions
  14. */
  15. class CH323Member
  16. {
  17. private:
  18. // IControlChannel *m_pControlChannel; // reference to control channel
  19. // (needed only if this is the MC)
  20. LPWSTR m_pTerminalID;
  21. CC_TERMINAL_LABEL m_TerminalLabel;
  22. BOOL m_fTermLabelExists; // true if m_TerminalLabel contents
  23. // have been assigned
  24. public:
  25. CH323Member();
  26. ~CH323Member();
  27. STDMETHOD(SetMemberInfo(PCC_OCTETSTRING pTerminalID,
  28. PCC_TERMINAL_LABEL pTerminalLabel));
  29. STDMETHOD_(LPWSTR, GetTerminalID());
  30. STDMETHOD_(PCC_TERMINAL_LABEL, GetTerminalLabel());
  31. };
  32. #endif // _CMEMBER_H