Changeset 222 for trunk/src/helpers/debug.c
- Timestamp:
- Sep 3, 2002, 8:17:46 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/debug.c
r212 r222 100 100 // this specifies whether we're dealing with 32-bit code; 101 101 // this gets changed whenever 16-bit count is detected 102 staticBOOL f32bit = TRUE;102 STATIC BOOL f32bit = TRUE; 103 103 104 104 /* … … 363 363 ********************************************************************/ 364 364 365 staticint Read16CodeView(FILE *LogFile, PXDEBUGINFO pxdi, int fh, int TrapSeg, int TrapOff, CHAR *FileName);366 staticint Read32PmDebug(FILE *LogFile, PXDEBUGINFO pxdi, int fh, int TrapSeg, int TrapOff, CHAR *FileName);365 STATIC int Read16CodeView(FILE *LogFile, PXDEBUGINFO pxdi, int fh, int TrapSeg, int TrapOff, CHAR *FileName); 366 STATIC int Read32PmDebug(FILE *LogFile, PXDEBUGINFO pxdi, int fh, int TrapSeg, int TrapOff, CHAR *FileName); 367 367 368 368 /* … … 385 385 */ 386 386 387 staticVOID WriteDebugInfo(FILE *LogFile, // in: open log file387 STATIC VOID WriteDebugInfo(FILE *LogFile, // in: open log file 388 388 PXDEBUGINFO pxdi) // in: debug info 389 389 { … … 618 618 */ 619 619 620 staticint Read32PmDebug(FILE *LogFile, // in: text log file to write to620 STATIC int Read32PmDebug(FILE *LogFile, // in: text log file to write to 621 621 PXDEBUGINFO pxdi, 622 622 int ModuleFile, // in: module file opened with sopen() … … 1050 1050 */ 1051 1051 1052 staticint Read16CodeView(FILE *LogFile, // in: text log file to write to1052 STATIC int Read16CodeView(FILE *LogFile, // in: text log file to write to 1053 1053 PXDEBUGINFO pxdi, 1054 1054 int fh, … … 1215 1215 */ 1216 1216 1217 staticVOID var_value(void *varptr, // in: address of the variable on the stack1217 STATIC VOID var_value(void *varptr, // in: address of the variable on the stack 1218 1218 char *pszBuf, // out: information 1219 1219 BYTE type) // in: type; if >= 32, we'll call DosQueryMem … … 1299 1299 */ 1300 1300 1301 staticBOOL search_userdefs(FILE *LogFile, // in: text log file to write to1301 STATIC BOOL search_userdefs(FILE *LogFile, // in: text log file to write to 1302 1302 ULONG stackofs, 1303 1303 USHORT var_no) … … 1343 1343 */ 1344 1344 1345 staticBOOL search_pointers(FILE *LogFile, // in: text log file to write to1345 STATIC BOOL search_pointers(FILE *LogFile, // in: text log file to write to 1346 1346 ULONG stackofs, 1347 1347 USHORT var_no)
Note:
See TracChangeset
for help on using the changeset viewer.