In article <[email protected]> you wrote: > I am writing an application in C that calls Java methods. I have followed > the instructions for load the library and gaining access to the methods and > this is all compiling great. I need help on the link. What library would > JNI_CreateJavaVM be in? It seems like it would be in a C library somewhere > but I no finding it in my LE SCEELKED libraries. It doesn't make sense to me > that this would be in a /u/lpp/java* library as this should be a C resolution. > Can anyone help direct me to the product that contains the binder resolutions > for the JVM? > Janet
That function lives in a DLL. So you just need the side file for the link. libjvm.x is the side file. Something like: INCLUDE '/java16_64/bin/j9vm/libjvm.x' ENTRY CELQSTRT NAME MYPROG(R) -- Don Poitras - SAS Development - SAS Institute Inc. - SAS Campus Drive [email protected] (919) 531-5637 Cary, NC 27513 ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: INFO IBM-MAIN
