1ZMQ_VERSION(3) 0MQ Manual ZMQ_VERSION(3)
2
3
4
6 zmq_version - report 0MQ library version
7
9 void zmq_version (int *major, int *minor, int *patch);
10
12 The zmq_version() function shall fill in the integer variables pointed
13 to by the major, minor and patch arguments with the major, minor and
14 patch level components of the 0MQ library version.
15
16 This functionality is intended for applications or language bindings
17 dynamically linking to the 0MQ library that wish to determine the
18 actual version of the 0MQ library they are using.
19
21 There is no return value.
22
24 No errors are defined.
25
27 Printing out the version of the 0MQ library.
28
29 int major, minor, patch;
30 zmq_version (&major, &minor, &patch);
31 printf ("Current 0MQ version is %d.%d.%d\n", major, minor, patch);
32
33
35 zmq(7)
36
38 This 0MQ manual page was written by Martin Sustrik
39 <sustrik@250bpm.com[1]> and Martin Lucina <mato@kotelna.sk[2]>.
40
42 1. sustrik@250bpm.com
43 mailto:sustrik@250bpm.com
44
45 2. mato@kotelna.sk
46 mailto:mato@kotelna.sk
47
48
49
500MQ 2.1.4 03/30/2011 ZMQ_VERSION(3)