Writing Java Plugin for Complex C/C++ Program
Rewriting the C/C++ program is out of the question, but my company wants a plugin that's in Java, using the JNI. The interaction for this plugin requires calling Java methods from the existing C/C++ code, instead of simply calling a separate program. So, I'm writing a test application to make sure I can create the JVM, call a method, and destroy the JVM. Everything seems to be correct (based on many examples I'm comparing it to), but I get this message:
"JavaFromC.obj: error LNK2001: unresolved external symbol: __imp__JNI_CreateJavaVM@12"
I think everything is included/linked/whatever, and it doesn't complain about any of the other JNI calls I make, but for some reason it just doesn't like that one call. Any help? Please reply to: nmsign@gmail.com

