The R Project SVN R

Rev

Rev 26207 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 26207 Rev 31242
Line 529... Line 529...
529
int SYSCALL EXPORT SC_Proxy_get_object (SC_Proxy_Object** obj,
529
int SYSCALL EXPORT SC_Proxy_get_object (SC_Proxy_Object** obj,
530
					unsigned long version)
530
					unsigned long version)
531
{
531
{
532
  R_Proxy_Object_Impl* proxy_object = NULL;
532
  R_Proxy_Object_Impl* proxy_object = NULL;
533
 
533
 
-
 
534
  /* break to debugger */
-
 
535
  if(getenv("DEBUG_RPROXY")) {
-
 
536
    OutputDebugString("Debugging of rproxy.dll initiated, breaking to debugger\n");
-
 
537
    DebugBreak();
-
 
538
  } else {
-
 
539
    OutputDebugString("No Debugging of rproxy\n");
-
 
540
  }
-
 
541
 
534
  if (obj == NULL)
542
  if (obj == NULL)
535
    {
543
    {
536
      return SC_PROXY_ERR_INVALIDARG;
544
      return SC_PROXY_ERR_INVALIDARG;
537
    }
545
    }
538
 
546