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 page was written by the 0MQ community. To make a change please
39 read the 0MQ Contribution Policy at
40 http://www.zeromq.org/docs:contributing.
41
42
43
440MQ 4.3.4 07/23/2021 ZMQ_VERSION(3)