Posted By:
Eric_Maginniss
Posted On:
Thursday, November 13, 2003 11:23 AM
I would tend to make a wrapper for the main entry point that works with whatever package you want your java code to be in. So, you would have four parts to your system:
- C++ code with main() entry point
- C++ wrapper code with a method name that matches your package which only calls the main() listed above
- The java wrapper classes that defines the native method listed above
- The java application which would call your native code through the java wrapper