Commit 7bf516de authored by Astellar's avatar Astellar

zmq_msg_t will now typedef a named struct.

This change allows forward declaration of struct zmq_msg_t.
parent d981c91f
...@@ -176,7 +176,7 @@ ZMQ_EXPORT int zmq_term (void *context); ...@@ -176,7 +176,7 @@ ZMQ_EXPORT int zmq_term (void *context);
/* 0MQ message definition. */ /* 0MQ message definition. */
/******************************************************************************/ /******************************************************************************/
typedef struct {unsigned char _ [32];} zmq_msg_t; typedef struct zmq_msg_t {unsigned char _ [32];} zmq_msg_t;
typedef void (zmq_free_fn) (void *data, void *hint); typedef void (zmq_free_fn) (void *data, void *hint);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment