SimpleIPC Library

From Lazarus wiki
Jump to navigationJump to search

SimpleIPC are units for Freepascal that allow client and server to send interprocess communication messages between processes. However how does one send messages from a Freepascal program, to a Delphi program using SimpleIPC, or a program written in another language? The SimpleIPC library intends to solve this issue. Simply load the SimpleIPC dll into your program (whatever language it is written in) and now you can send messages from any program (including freepascal) written in any language, and receive messages to any program also written in any language.

Github Project

https://github.com/z505/SimpleIPC-lib

Example

How would one send messages from freepascal to GoLang, as an example? The github project page has a demo showing exactly that.