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

[781 byte] By [nheilmana] at [2007-10-3 2:43:54]
# 1
Nevermind...problem solved.
nheilmana at 2007-7-14 20:32:18 > top of Java-index,Java HotSpot Virtual Machine,Specifications...