From 597cc5edd624525563e6549dc0057eca2a51c81d Mon Sep 17 00:00:00 2001 From: Micah Anderson Date: Tue, 11 Nov 2014 13:30:46 -0500 Subject: upgrade to new version --- doc/zmq_version.html | 812 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 812 insertions(+) create mode 100644 doc/zmq_version.html (limited to 'doc/zmq_version.html') diff --git a/doc/zmq_version.html b/doc/zmq_version.html new file mode 100644 index 0000000..987847d --- /dev/null +++ b/doc/zmq_version.html @@ -0,0 +1,812 @@ + + + + + +zmq_version(3) + + + + + +
+
+

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 ØMQ library version.

+

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

+
+
+
+

RETURN VALUE

+
+

There is no return value.

+
+
+
+

ERRORS

+
+

No errors are defined.

+
+
+
+

EXAMPLE

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

SEE ALSO

+
+ +
+
+
+

AUTHORS

+
+

This page was written by the ØMQ community. To make a change please +read the ØMQ Contribution Policy at http://www.zeromq.org/docs:contributing.

+
+
+
+

+ + + -- cgit v1.2.3