22 lines
345 B
C
22 lines
345 B
C
/*
|
|
* $Id: jni.h,v 1.2 2006-08-02 15:19:59 bacon Exp $
|
|
*/
|
|
|
|
#ifndef _XP_AWK_JNI_H_
|
|
#define _XP_AWK_JNI_H_
|
|
|
|
#include <jni.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
JNIEXPORT void JNICALL Java_xpkit_xpj_awk_AWK_open (JNIEnv*, jobject);
|
|
JNIEXPORT void JNICALL Java_xpkit_xpj_awk_AWK_close (JNIEnv*, jobject);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|