GCS  0.2.3
gcs_recv_msg.h
1 /*
2  * Copyright (C) 2008 Codership Oy <info@codership.com>
3  *
4  * $Id: gcs_recv_msg.h 3259 2013-09-01 22:35:30Z alex $
5  */
6 
11 #ifndef _gcs_recv_msg_h_
12 #define _gcs_recv_msg_h_
13 
14 #include "gcs_msg_type.h"
15 
16 typedef struct gcs_recv_msg
17 {
18  void* buf;
19  int buf_len;
20  int size;
21  int sender_idx;
22  gcs_msg_type_t type;
23 }
25 
26 #endif /* _gcs_recv_msg_h_ */
Definition: gcs_recv_msg.h:16