comparison TOOLS/realcodecs/sipr.c @ 7774:88ae4547a289

dumping environment vars in setdllacecsspath
author arpi
date Thu, 17 Oct 2002 00:28:10 +0000
parents 86c478bea7ce
children 3b80b74b6813
comparison
equal deleted inserted replaced
7773:e7dd97c4c840 7774:88ae4547a289
431 #endif 431 #endif
432 432
433 return result; 433 return result;
434 } 434 }
435 435
436 void SetDLLAccessPath(ulong p1) { 436 void SetDLLAccessPath(ulong p1,ulong p2) {
437 // loadSyms(); 437 // loadSyms();
438 fprintf(stderr, "SetDLLAccessPath(ulong p1=0x%0x(%d))\n", p1, p1); 438 char* ize=p1;
439 hexdump((void*)p1, 44); 439 fprintf(stderr, "SetDLLAccessPath(ulong p1=0x%0x(%d) p2=%p)\n", p1, p1,p2);
440 while(*ize){
441 fprintf(stderr,"%s\n",ize);
442 ize+=strlen(ize)+1;
443 }
444 //hexdump((void*)p1, 244);
440 (*raSetDLLAccessPath)(p1); 445 (*raSetDLLAccessPath)(p1);
441 hexdump((void*)p1, 44); 446 // hexdump((void*)p1, 44);
442 fprintf(stderr, "--> void\n\n\n"); 447 fprintf(stderr, "--> void\n\n\n");
443 } 448 }
444 449
445 static char pwdtemp[1000]; 450 static char pwdtemp[1000];
446 451