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

@@ -122,7 +122,7 @@ int zmq::sub_t::xsetsockopt (int option_, const void *optval_,
return -1;
}
int zmq::sub_t::xsend (struct zmq_msg_t *msg_, int flags_)
int zmq::sub_t::xsend (zmq_msg_t *msg_, int flags_)
{
errno = ENOTSUP;
return -1;
@@ -134,7 +134,7 @@ int zmq::sub_t::xflush ()
return -1;
}
int zmq::sub_t::xrecv (struct zmq_msg_t *msg_, int flags_)
int zmq::sub_t::xrecv (zmq_msg_t *msg_, int flags_)
{
while (true) {