mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-12 18:40:27 +01:00
32baeb610e
This reverts commit 77a3c36ff1
.
54 lines
1.0 KiB
Plaintext
54 lines
1.0 KiB
Plaintext
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 patchlevel
|
|
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
|
|
-------
|
|
The 0MQ documentation was written by Martin Sustrik <sustrik@250bpm.com> and
|
|
Martin Lucina <mato@kotelna.sk>.
|