SemysLinkCreate

01 Creates an empty link object.
02

int32 SemysLinkCreate(HSemysLink *pLink, SemysLinkListener const *pListener, char const *linkName);

03 Parameters:
  • pLink: Pointer to a link handle that will receive the handle value of the created link object.
  • pListener: The owner interface for the link.
  • linkName: The name of the link.
04 Return Values:
Nonzero if the link could be created, 0 otherwise.
05 It is recommended to uniquely name a link within the process, although this is not necessary. The link must be named identical on both sides though.
06 The contents of the listener structure will be copied into an internal buffer.
07 Reference: SemysLink.h
Implementation: Semys Library
See Also: Link Sub-System, SemysLinkListener, SemysLinkSetListenerProt()

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