Example #1
0
JNIEXPORT jlong JNICALL
Java_org_zeromq_zebra_XrapMsg__1_1send (JNIEnv *env, jclass c, jlong self, jlong output)
{
    jint send_ = (jint) xrap_msg_send ((xrap_msg_t **) &self, (void *) (intptr_t) output);
    return self;
}
Example #2
0
///
//  Send the xrap_msg to the output, and destroy it
int QXrapMsg::send (void *output)
{
    int rv = xrap_msg_send (&self, output);
    return rv;
}