SemysLinkListener

01
typedef struct tagSemysLinkListener
{
  HSemysListener mListenerHandle;
  SemysLinkIdleProt mIdle;
  SemysLinkStatusChangedProt mStatusChanged;
  SemysLinkReceiveProt mReceive;
} SemysLinkListener;
02 Members:
  • mListenerHandle: An arbitrary handle that will be passed to the callbacks.
  • mIdle: Function pointer for the SemysLinkIdleProt() callback.
  • mStatusChanged: Function pointer for the SemysLinkStatusChangedProt() callback.
  • mReceive: Function pointer for the SemysLinkReceiveProt() callback.
03 The constant C_SEMYS_LINK_LISTENER_NULL initializes this structure to zero values.
04 This structure specifies the owner interface of a link.
05 Reference: SemysLink.h
Implementation: Semys Library
See Also: Link Sub-System, SemysLinkCreate(), SemysLinkSetListenerProt()

Goto: Main Page; This page is part of the Semys software documentation. See About: Documentation for details.