hi all,
i have a c++ coding for a softphone. I opened that file in vc++ and i'm able to create a .exe file from that.
the .exe file is running fine( it is searching for the server and is getting registered there).
now i wanted to add jni to it.
so i have written a
java program to one of the methods in the c++ program( void pjstart() ), compiled it and created a header file.
now i replaced the c++ function with the stuff generated in the header file,( JNIEXPORT void JNICALL Java_test_pjstart(JNIEnv *env, jobject jobj) )
now i'm unable to build that file in vc++. it is showing some errors..
why is that throwing errors...
is there something wrong???
any suggestions please...
thanks in advance