diff options
author | Martin Sustrik <sustrik@250bpm.com> | 2010-02-11 10:29:33 +0100 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2010-02-11 10:29:33 +0100 |
commit | bd9213e71222df66634d59581264ffe67210222c (patch) | |
tree | dbb334847c48aafa0d12def19aaf264139ce09eb /bindings/c | |
parent | 7cab423fc20e46f54fa561e51b566cc8a63ca5c1 (diff) |
ZMQII-72: Add zmq_version function
Diffstat (limited to 'bindings/c')
-rw-r--r-- | bindings/c/zmq.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bindings/c/zmq.h b/bindings/c/zmq.h index 3bcee9d..d5fb4f4 100644 --- a/bindings/c/zmq.h +++ b/bindings/c/zmq.h @@ -40,6 +40,12 @@ extern "C" { #endif //////////////////////////////////////////////////////////////////////////////// +// 0MQ versioning supprt. +//////////////////////////////////////////////////////////////////////////////// + +ZMQ_EXPORT void zmq_version (int *major, int *minor, int *patch); + +//////////////////////////////////////////////////////////////////////////////// // 0MQ errors. //////////////////////////////////////////////////////////////////////////////// |