Displaying 1 result from an estimated 1 matches for "ltracebuffer".
2003 May 05
1
R-1.7.0: Rproxy.dll loadlibrary/freelibrary error (PR#2914)
...er | support arguments for connector initialization
// 01-04-04 | baier | enhancements by BDR: set RHOME from registry
// 03-04-07 | baier | check registry 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);
Ou...