Ignore:
Timestamp:
Sep 3, 2002, 8:17:46 PM (23 years ago)
Author:
umoeller
Message:

Minor adjustments for new static handling.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/debug.c

    r212 r222  
    100100// this specifies whether we're dealing with 32-bit code;
    101101// this gets changed whenever 16-bit count is detected
    102 static BOOL     f32bit = TRUE;
     102STATIC BOOL     f32bit = TRUE;
    103103
    104104/*
     
    363363 ********************************************************************/
    364364
    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);
     365STATIC int Read16CodeView(FILE *LogFile, PXDEBUGINFO pxdi, int fh, int TrapSeg, int TrapOff, CHAR *FileName);
     366STATIC int Read32PmDebug(FILE *LogFile, PXDEBUGINFO pxdi, int fh, int TrapSeg, int TrapOff, CHAR *FileName);
    367367
    368368/*
     
    385385 */
    386386
    387 static VOID WriteDebugInfo(FILE *LogFile,              // in: open log file
     387STATIC VOID WriteDebugInfo(FILE *LogFile,              // in: open log file
    388388                           PXDEBUGINFO pxdi)           // in: debug info
    389389{
     
    618618 */
    619619
    620 static int Read32PmDebug(FILE *LogFile,        // in: text log file to write to
     620STATIC int Read32PmDebug(FILE *LogFile,        // in: text log file to write to
    621621                         PXDEBUGINFO pxdi,
    622622                         int ModuleFile,       // in: module file opened with sopen()
     
    10501050 */
    10511051
    1052 static int Read16CodeView(FILE *LogFile,       // in: text log file to write to
     1052STATIC int Read16CodeView(FILE *LogFile,       // in: text log file to write to
    10531053                          PXDEBUGINFO pxdi,
    10541054                          int fh,
     
    12151215 */
    12161216
    1217 static VOID var_value(void *varptr,        // in: address of the variable on the stack
     1217STATIC VOID var_value(void *varptr,        // in: address of the variable on the stack
    12181218                      char *pszBuf,        // out: information
    12191219                      BYTE type)           // in: type; if >= 32, we'll call DosQueryMem
     
    12991299 */
    13001300
    1301 static BOOL search_userdefs(FILE *LogFile,     // in: text log file to write to
     1301STATIC BOOL search_userdefs(FILE *LogFile,     // in: text log file to write to
    13021302                            ULONG stackofs,
    13031303                            USHORT var_no)
     
    13431343 */
    13441344
    1345 static BOOL search_pointers(FILE *LogFile,     // in: text log file to write to
     1345STATIC BOOL search_pointers(FILE *LogFile,     // in: text log file to write to
    13461346                            ULONG stackofs,
    13471347                            USHORT var_no)
Note: See TracChangeset for help on using the changeset viewer.