Back to home page

Enduro/X

 
 

    


0001 #ifndef MESSAGING_HEADER
0002 #define MESSAGING_HEADER
0003 
0004 #ifdef __cplusplus
0005 namespace cgreen {
0006     extern "C" {
0007 #endif
0008 
0009 int start_cgreen_messaging(int tag);
0010 void send_cgreen_message(int messaging, int result);
0011 int receive_cgreen_message(int messaging);
0012 int get_pipe_read_handle();
0013 int get_pipe_write_handle();
0014 
0015 #ifdef __cplusplus
0016     }
0017 }
0018 #endif
0019 
0020 #endif