ReadInterSCARMessage
From SCAR Divi Manual
Definition
function ReadInterSCARMessage(const Id: AnsiString): AnsiString;
Availability
SCAR Divi 3.00 > Current
Description
Allows SCAR to used shared memory to read messages sent by itself or other instances of SCAR. The Id parameter represents a channel used for the communication, like a port for TCP sockets. The message is returned as a string.
Example
begin SendInterSCARMessage('Test', 'Hello World!'); Wait(1000); WriteLn(ReadInterSCARMessage('Test')); end.
Output:
Hello World!