Ejemplo n.º 1
0
JNIEXPORT jint JNICALL
Java_org_zeromq_zebra_XrapMsg__1_1sendAgain (JNIEnv *env, jclass c, jlong self, jlong output)
{
    jint send_again_ = (jint) xrap_msg_send_again ((xrap_msg_t *) (intptr_t) self, (void *) (intptr_t) output);
    return send_again_;
}
Ejemplo n.º 2
0
///
//  Send the xrap_msg to the output, and destroy it
int QXrapMsg::sendAgain (void *output)
{
    int rv = xrap_msg_send_again (self, output);
    return rv;
}