LibraryLink`
LibraryLink`getWSLINK (C Function)
gets a WSLINK connection to use for evaluations in the Wolfram Language.
Examples
Basic Examples (1)
The following gets a WSTP connection and uses it to send a message to the kernel:
WSLINK link = libData->getWSLINK(libData);
WSPutFunction( link, "EvaluatePacket", 1);
WSPutFunction( link, "Message", 2);
WSPutFunction( link, "MessageName", 2);
WSPutSymbol( link, "MyFunction");
WSPutString( link, "info");
WSPutString( link, "Message called from within DLL function.");
libData->processWSLINK( link);
pkt = WSNextPacket( link);
if ( pkt == RETURNPKT) {
WSNewPacket(link);
}