/// // Returns CZMQ version as a single 6-digit integer encoding the major // version (x 10000), the minor version (x 100) and the patch. int QmlZprocAttached::czmqVersion () { return zproc_czmq_version (); };
JNIEXPORT jint JNICALL Java_org_zeromq_czmq_Zproc__1_1czmqVersion (JNIEnv *env, jclass c) { jint czmq_version_ = (jint) zproc_czmq_version (); return czmq_version_; }
/// // Returns CZMQ version as a single 6-digit integer encoding the major // version (x 10000), the minor version (x 100) and the patch. int QZproc::czmqVersion () { int rv = zproc_czmq_version (); return rv; }