Changeset 142 for trunk/src/helpers/debug.c
- Timestamp:
- Feb 21, 2002, 8:24:22 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/debug.c
r121 r142 362 362 ********************************************************************/ 363 363 364 int Read16CodeView(FILE *LogFile, PXDEBUGINFO pxdi, int fh, int TrapSeg, int TrapOff, CHAR *FileName);365 int Read32PmDebug(FILE *LogFile, PXDEBUGINFO pxdi, int fh, int TrapSeg, int TrapOff, CHAR *FileName);364 static int Read16CodeView(FILE *LogFile, PXDEBUGINFO pxdi, int fh, int TrapSeg, int TrapOff, CHAR *FileName); 365 static int Read32PmDebug(FILE *LogFile, PXDEBUGINFO pxdi, int fh, int TrapSeg, int TrapOff, CHAR *FileName); 366 366 367 367 /* … … 384 384 */ 385 385 386 VOID WriteDebugInfo(FILE *LogFile, // in: open log file387 PXDEBUGINFO pxdi) // in: debug info386 static VOID WriteDebugInfo(FILE *LogFile, // in: open log file 387 PXDEBUGINFO pxdi) // in: debug info 388 388 { 389 389 fprintf(LogFile, … … 617 617 */ 618 618 619 int Read32PmDebug(FILE *LogFile, // in: text log file to write to620 PXDEBUGINFO pxdi,621 int ModuleFile, // in: module file opened with sopen()622 int TrapSeg,623 int TrapOff,624 CHAR *FileName)619 static int Read32PmDebug(FILE *LogFile, // in: text log file to write to 620 PXDEBUGINFO pxdi, 621 int ModuleFile, // in: module file opened with sopen() 622 int TrapSeg, 623 int TrapOff, 624 CHAR *FileName) 625 625 { 626 626 static unsigned int CurrSymSeg, NrSymbol, … … 1049 1049 */ 1050 1050 1051 int Read16CodeView(FILE *LogFile, // in: text log file to write to1052 PXDEBUGINFO pxdi,1053 int fh,1054 int TrapSeg,1055 int TrapOff,1056 CHAR *FileName)1051 static int Read16CodeView(FILE *LogFile, // in: text log file to write to 1052 PXDEBUGINFO pxdi, 1053 int fh, 1054 int TrapSeg, 1055 int TrapOff, 1056 CHAR *FileName) 1057 1057 { 1058 1058 static unsigned short int offset, … … 1214 1214 */ 1215 1215 1216 VOID var_value(void *varptr, // in: address of the variable on the stack1217 char *pszBuf, // out: information1218 BYTE type) // in: type; if >= 32, we'll call DosQueryMem1216 static VOID var_value(void *varptr, // in: address of the variable on the stack 1217 char *pszBuf, // out: information 1218 BYTE type) // in: type; if >= 32, we'll call DosQueryMem 1219 1219 { 1220 1220 ULONG Size = 1, … … 1298 1298 */ 1299 1299 1300 BOOL search_userdefs(FILE *LogFile, // in: text log file to write to1301 ULONG stackofs,1302 USHORT var_no)1300 static BOOL search_userdefs(FILE *LogFile, // in: text log file to write to 1301 ULONG stackofs, 1302 USHORT var_no) 1303 1303 { 1304 1304 USHORT pos; … … 1342 1342 */ 1343 1343 1344 BOOL search_pointers(FILE *LogFile, // in: text log file to write to1345 ULONG stackofs,1346 USHORT var_no)1344 static BOOL search_pointers(FILE *LogFile, // in: text log file to write to 1345 ULONG stackofs, 1346 USHORT var_no) 1347 1347 { 1348 1348 USHORT pos, upos;
Note:
See TracChangeset
for help on using the changeset viewer.