#ifndef _MQ_IPC_H_ #define _MQ_IPC_H_ #include /* For O_* constants */ #include /* For mode constants */ #include #include int mq_ipc_connect(const char* clientServer, const char* serverClient); int mq_ipc_disconnect(); int mq_ipc_send(const char* payload); int mq_ipc_receive(char* buffer, int bufferSize); int mq_ipc_send_timed(const char* payload, int timeoutInSec); int mq_ipc_receive_timed(char* buffer, int bufferSize, int timeoutInSec); #endif