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.
|
|
/*
* File: cmember.h * * * * Revision History: * * 05/29/98 mikev created */
#ifndef _CMEMBER_H
#define _CMEMBER_H
/*
* Class definitions */
class CH323Member {
private:
// IControlChannel *m_pControlChannel; // reference to control channel
// (needed only if this is the MC)
LPWSTR m_pTerminalID; CC_TERMINAL_LABEL m_TerminalLabel; BOOL m_fTermLabelExists; // true if m_TerminalLabel contents
// have been assigned
public: CH323Member(); ~CH323Member();
STDMETHOD(SetMemberInfo(PCC_OCTETSTRING pTerminalID, PCC_TERMINAL_LABEL pTerminalLabel)); STDMETHOD_(LPWSTR, GetTerminalID()); STDMETHOD_(PCC_TERMINAL_LABEL, GetTerminalLabel()); };
#endif // _CMEMBER_H
|