libdvm.so inside of Android2.3, i can use the code to call dexFileParse code: void * handle=dlopen("/system/lib/libdvm.so",RTDL_LAZY); void *pFunc=dlsym(handle,"dexFileParse");
but libdvm.so exports _Z16dexFileParseXXX,i won't get the address of dexFileParse from dlsym(handle,"dexFileParse"). you say:you can dlsym(handle,"_Z16dexFileParseXXX"), yeah, it will be OK, but _Z16****XXX is renamed by the compiler of cplusplus,I can't use it when i don't know the compiler of cplusplus
How can i call the dexFileParse?
thanks