|
NAMEzmq_version - report 0MQ library versionSYNOPSISvoid zmq_version (int *major, int *minor, int *patch);DESCRIPTIONThe 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 VALUEThere is no return value.ERRORSNo errors are defined.EXAMPLEPrinting 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 ALSOzmq(7)AUTHORSThis 0MQ manual page was written by Martin Sustrik <sustrik@250bpm.com[1]> and Martin Lucina <mato@kotelna.sk[2]>.NOTES
mailto:sustrik@250bpm.com
mailto:mato@kotelna.sk
Visit the GSP FreeBSD Man Page Interface. |