Hi, actually i have to call a dialogic global call api in my java program through an intermediate c program using jni.So i want to include this c file in my java program.I hav been tried my best need help urgent.....
You cannot directly use a C header file in a Java program. The way to call native code from Java is JNI, as you already know. You'll probably have to write some native code (in C) yourself to interface between your Java program and the native code that you want to use.