Guest User

Untitled

a guest
May 21st, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.13 KB | None | 0 0
  1. #define REQUEST_PIPE "/tmp/req"
  2. #define RESPONSE_PIPE "/tmp/res"
  3.  
  4. struct message {
  5.     long type;
  6.     int id;
  7.     char data[140];
  8. } msg;
Add Comment
Please, Sign In to add comment