changeset 7774:88ae4547a289

dumping environment vars in setdllacecsspath
author arpi
date Thu, 17 Oct 2002 00:28:10 +0000
parents e7dd97c4c840
children 87c94fd5719f
files TOOLS/realcodecs/sipr.c
diffstat 1 files changed, 9 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/TOOLS/realcodecs/sipr.c	Thu Oct 17 00:27:27 2002 +0000
+++ b/TOOLS/realcodecs/sipr.c	Thu Oct 17 00:28:10 2002 +0000
@@ -433,12 +433,17 @@
 	return result;
 }
 
-void  SetDLLAccessPath(ulong p1) {
+void  SetDLLAccessPath(ulong p1,ulong p2) {
 //	loadSyms();
-	fprintf(stderr, "SetDLLAccessPath(ulong p1=0x%0x(%d))\n", p1, p1);
-	hexdump((void*)p1, 44);
+	char* ize=p1;
+	fprintf(stderr, "SetDLLAccessPath(ulong p1=0x%0x(%d) p2=%p)\n", p1, p1,p2);
+	while(*ize){
+	    fprintf(stderr,"%s\n",ize);
+	    ize+=strlen(ize)+1;
+	}
+	//hexdump((void*)p1, 244);
 	(*raSetDLLAccessPath)(p1);
-	hexdump((void*)p1, 44);
+//	hexdump((void*)p1, 44);
 	fprintf(stderr, "--> void\n\n\n");
 }