From 088a2db6746488c1ce4a73c357caaece50bbdf60 Mon Sep 17 00:00:00 2001 From: Martin Sustrik Date: Wed, 23 Sep 2009 10:22:54 +0200 Subject: ZMQII-16: Change "struct zmq_msg_t" to "zmq_msg_t" in C binding --- src/sub.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/sub.hpp') diff --git a/src/sub.hpp b/src/sub.hpp index 180391d..8691928 100644 --- a/src/sub.hpp +++ b/src/sub.hpp @@ -45,15 +45,15 @@ namespace zmq void xkill (class reader_t *pipe_); void xrevive (class reader_t *pipe_); int xsetsockopt (int option_, const void *optval_, size_t optvallen_); - int xsend (struct zmq_msg_t *msg_, int flags_); + int xsend (zmq_msg_t *msg_, int flags_); int xflush (); - int xrecv (struct zmq_msg_t *msg_, int flags_); + int xrecv (zmq_msg_t *msg_, int flags_); private: // Helper function to return one message choosed using // fair queueing algorithm. - int fq (struct zmq_msg_t *msg_, int flags_); + int fq (zmq_msg_t *msg_, int flags_); // Inbound pipes, i.e. those the socket is getting messages from. typedef yarray_t in_pipes_t; -- cgit v1.2.3