search for: _simple_test

Displaying 1 result from an estimated 1 matches for "_simple_test".

2015 Feb 05
0
How to unload R.dll successfully by FreeLibrary
...n(this is not allowed as documented). Anyone can tell me why, thanks. //the following is my c++ code, used in a Visual Studio 2012 Console Application #define ORAPI__cdecl typedefBOOL(ORAPI*PFN_Rf_initEmbeddedR)(int argc, char *argv[]); typedefvoid(ORAPI*PFN_Rf_endEmbeddedR)(int fatal); staticvoid_simple_test() { #define STR_R_DLL_PATH_T("D:\\R\\R-3.1.2\\bin\\i386\\R.dll") HMODULEm_hRDll = LoadLibrary(STR_R_DLL_PATH); if ( m_hRDll ) { PFN_Rf_initEmbeddedR pfnInit = (PFN_Rf_initEmbeddedR)GetProcAddress(m_hRDll, "Rf_initEmbeddedR"); PFN_Rf_endEmbeddedR pfnEnd = (PFN_Rf_endEmbeddedR)Get...