Displaying 1 result from an estimated 1 matches for "dlllocat".
Did you mean:
allocat
2003 May 05
1
R-1.7.0: Rproxy.dll loadlibrary/freelibrary error (PR#2914)
...ry key on failure even if R_HOME is set,
// check PATH if everything else fails. trace failures!
int loadDll()
{
static char lTraceBuffer[TRACEBUFSIZE];
// get entry-point
if (getenv ("R_HOME"))
{ // BDR
OutputDebugString("from env:");
char DLLlocation[MAX_PATH];
strcpy(DLLlocation, getenv("R_HOME"));
strcat(DLLlocation, "\\bin\\");
strcat(DLLlocation, RDLL);
OutputDebugString(DLLlocation);
m_ProxyModule = LoadLibraryEx (DLLlocation, NULL,
LOAD_WITH_ALTERED_SEARCH_PATH);
// trace failure!...