Displaying 1 result from an estimated 1 matches for "sc_proxy_ok".
2003 May 05
1
R-1.7.0: Rproxy.dll loadlibrary/freelibrary error (PR#2914)
...nc = (SC_PROXY_GET_OBJECT) GetProcAddress (m_ProxyModule,
SC_PROXY_GET_OBJECT_FUN);
if (lFunc == 0)
{
return -1;
}
// get proxy object
ULONG lRc = lFunc (&m_ProxyObject,SC_PROXY_INTERFACE_VERSION);
if ((lRc != SC_PROXY_OK) || (m_ProxyObject == 0))
{
FreeLibrary (m_ProxyModule);
m_ProxyModule = 0;
return -2;
}
char* lParams = 0;
lParams = strdup ("");
OutputDebugString("vtbl->init getting called:");
// init R
lRc = m...