ZMQII-16: Change "struct zmq_msg_t" to "zmq_msg_t" in C binding

This commit is contained in:
Martin Sustrik
2009-09-23 10:22:54 +02:00
parent 3bd8f83f6d
commit 088a2db674
18 changed files with 46 additions and 44 deletions

View File

@@ -43,7 +43,7 @@ namespace zmq
void set_endpoint (i_endpoint *endpoint_);
// Reads a message to the underlying pipe.
bool read (struct zmq_msg_t *msg_);
bool read (zmq_msg_t *msg_);
// Ask pipe to terminate.
void term ();
@@ -93,7 +93,7 @@ namespace zmq
// Writes a message to the underlying pipe. Returns false if the
// message cannot be written because high watermark was reached.
bool write (struct zmq_msg_t *msg_);
bool write (zmq_msg_t *msg_);
// Flush the messages downsteam.
void flush ();