Changeset 144 for trunk/classes/c/c_common
- Timestamp:
- Jan 24, 2024, 7:31:46 PM (19 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/classes/c/c_common/except.c
r108 r144 652 652 fprintf(hTrap,"OS/2 Version %d.%d\n",Version[0]/10,Version[1]); 653 653 rc=DosQueryModFromEIP( &hMod, &ObjNum, CCHMAXPATH, 654 Name, &Offset, pERepRec->ExceptionAddress);654 Name, &Offset, (ULONG) pERepRec->ExceptionAddress); 655 655 if (rc==0) { 656 656 fprintf(hTrap,"Failing code module internal name : %s\n",Name); … … 1025 1025 } else { 1026 1026 rc = DosQueryModFromEIP(&hMod, &ObjNum, sizeof(Name), 1027 Name, &Offset, ( PVOID)RetAddr);1027 Name, &Offset, (ULONG) RetAddr); 1028 1028 if (rc == NO_ERROR && ObjNum != -1) 1029 1029 { … … 2039 2039 2040 2040 /* stackofs += stack_ebp; */ 2041 if (1 || func_ofs == pubfunc_ofs) { 2041 if (1 || func_ofs == pubfunc_ofs) { //fixme GKY 1-22-24 why is this here since its always true 2042 2042 for(n = 0; n < var_ofs; n++) { 2043 2043 if (AutoVarsFound==FALSE) {
Note:
See TracChangeset
for help on using the changeset viewer.