Sha256: cc130091dabfdaa9bcc58a27e7818d979d0011584dd4d9f9f42d454b60ab772b

Contents?: true

Size: 1.05 KB

Versions: 10

Compression:

Stored size: 1.05 KB

Contents

zmq_version(3)
==============


NAME
----
zmq_version - report 0MQ library version


SYNOPSIS
--------
*void zmq_version (int '*major', int '*minor', int '*patch');*


DESCRIPTION
-----------
The _zmq_version()_ function shall fill in the integer variables pointed to by
the 'major', 'minor' and 'patch' arguments with the major, minor and patch level
components of the 0MQ library version.

This functionality is intended for applications or language bindings
dynamically linking to the 0MQ library that wish to determine the actual
version of the 0MQ library they are using.


RETURN VALUE
------------
There is no return value.


ERRORS
------
No errors are defined.


EXAMPLE
-------
.Printing out the version of the 0MQ library
----
int major, minor, patch;
zmq_version (&major, &minor, &patch);
printf ("Current 0MQ version is %d.%d.%d\n", major, minor, patch);
----


SEE ALSO
--------
linkzmq:zmq[7]


AUTHORS
-------
This page was written by the 0MQ community. To make a change please
read the 0MQ Contribution Policy at <http://www.zeromq.org/docs:contributing>.

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
laag-libzmq-4.2.3.2 vendor/github.com/zeromq/libzmq/doc/zmq_version.txt
laag-libzmq-4.2.3.0 vendor/github.com/zeromq/libzmq/doc/zmq_version.txt
rbczmq-1.7.9 ext/zeromq/doc/zmq_version.txt
rbczmq-1.7.8 ext/zeromq/doc/zmq_version.txt
rbczmq-1.7.7 ext/zeromq/doc/zmq_version.txt
rbczmq-1.7.6 ext/zeromq/doc/zmq_version.txt
rbczmq-1.7.5 ext/zeromq/doc/zmq_version.txt
rbczmq-1.7.4 ext/zeromq/doc/zmq_version.txt
rbczmq-1.7.3 ext/zeromq/doc/zmq_version.txt
rbczmq-1.7.2 ext/zeromq/doc/zmq_version.txt