19 lines
340 B
C
19 lines
340 B
C
|
|
/*
|
|
* Copyright (C) NGINX, Inc.
|
|
*/
|
|
|
|
#ifndef _NXT_JAVA_RESPONSE_H_INCLUDED_
|
|
#define _NXT_JAVA_RESPONSE_H_INCLUDED_
|
|
|
|
|
|
#include <jni.h>
|
|
#include <nxt_unit_typedefs.h>
|
|
|
|
|
|
int nxt_java_initResponse(JNIEnv *env, jobject cl);
|
|
|
|
jobject nxt_java_newResponse(JNIEnv *env, nxt_unit_request_info_t *req);
|
|
|
|
#endif /* _NXT_JAVA_RESPONSE_H_INCLUDED_ */
|