[Module] Named Pipe (Windows & MacOS)
Verfasst: 06.04.2020 20:21
Named Pipe - Module (Windows & MacOS / 64Bit)
Austausch von Nachrichten zwischen zwei Programmen mittels "Named Pipes"
Download: NamedPipeModule.pbi
Austausch von Nachrichten zwischen zwei Programmen mittels "Named Pipes"
Code: Alles auswählen
; NamedPipe::GetFullName() ; Path and name of the pipe
; ----- Server -----
; NamedPipe::EventPipe() ; Returns the name of the pipe after #Event_Message
; NamedPipe::GetEventMessage() ; Querying the message after #Event_Message
; NamedPipe::Create() ; Creates a pipe with the name and starts a thread to read the pipe
; NamedPipe::Use() ; Use an existing pipe and starts a thread to read the pipe
; NamedPipe::Pause() ; Pause the thread to read the pipe
; NamedPipe::Resume() ; Resume the thread to read the pipe
; NamedPipe::Close() ; Close the pipe and exit the thread
; NamedPipe::SetMessageReply() ; Set a reply to the receipt of a message.
; ----- Client -----
; NamedPipe::SendMessage() ; Send a message (Return: Reply)