This function is declared in the coresrv/syscalls.h file.
Retcode Call(Handle handle, const SMsgHdr *msgOut, SMsgHdr *msgIn);
This function sends an IPC request to the server process and locks the calling thread until an IPC response or error is received. This function is called by the client process.
Parameters:
handle is the client IPC handle of the utilized channel.msgOut is the buffer containing the IPC request.msgIn is the buffer for the IPC response.Returned value:
Other return codes are available.
Page top