コード例 #1
0
ファイル: QmlZproc.cpp プロジェクト: diorcety/czmq
///
//  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 ();
};
コード例 #2
0
JNIEXPORT jint JNICALL
Java_org_zeromq_czmq_Zproc__1_1czmqVersion (JNIEnv *env, jclass c)
{
    jint czmq_version_ = (jint) zproc_czmq_version ();
    return czmq_version_;
}
コード例 #3
0
ファイル: qzproc.cpp プロジェクト: evoskuil/czmq
///
//  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;
}