JNIEXPORT void JNICALL
Java_org_zeromq_czmq_Zproc__1_1logError (JNIEnv *env, jclass c, jstring format)
{
    char *format_ = (char *) (*env)->GetStringUTFChars (env, format, NULL);
    zproc_log_error ("%s", format_);
    (*env)->ReleaseStringUTFChars (env, format, format_);
}
Example #2
0
///
//  Log error condition - highest priority
void QmlZprocAttached::logError (const QString &format) {
    zproc_log_error ("%s", format.toUtf8().data());
};
Example #3
0
///
//  Log error condition - highest priority
void QZproc::logError (const QString &param)
{
    zproc_log_error ("%s", param.toUtf8().data());

}