Ignore:
Timestamp:
Feb 21, 2002, 8:24:22 PM (23 years ago)
Author:
umoeller
Message:

misc. updates

File:
1 edited

Legend:

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

    r121 r142  
    362362 ********************************************************************/
    363363
    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);
     364static int Read16CodeView(FILE *LogFile, PXDEBUGINFO pxdi, int fh, int TrapSeg, int TrapOff, CHAR *FileName);
     365static int Read32PmDebug(FILE *LogFile, PXDEBUGINFO pxdi, int fh, int TrapSeg, int TrapOff, CHAR *FileName);
    366366
    367367/*
     
    384384 */
    385385
    386 VOID WriteDebugInfo(FILE *LogFile,              // in: open log file
    387                     PXDEBUGINFO pxdi)           // in: debug info
     386static VOID WriteDebugInfo(FILE *LogFile,              // in: open log file
     387                           PXDEBUGINFO pxdi)           // in: debug info
    388388{
    389389    fprintf(LogFile,
     
    617617 */
    618618
    619 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)
     619static 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)
    625625{
    626626    static unsigned int CurrSymSeg, NrSymbol,
     
    10491049 */
    10501050
    1051 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)
     1051static 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)
    10571057{
    10581058    static unsigned short int offset,
     
    12141214 */
    12151215
    1216 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
     1216static 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
    12191219{
    12201220    ULONG           Size = 1,
     
    12981298 */
    12991299
    1300 BOOL search_userdefs(FILE *LogFile,     // in: text log file to write to
    1301                      ULONG stackofs,
    1302                      USHORT var_no)
     1300static BOOL search_userdefs(FILE *LogFile,     // in: text log file to write to
     1301                            ULONG stackofs,
     1302                            USHORT var_no)
    13031303{
    13041304    USHORT          pos;
     
    13421342 */
    13431343
    1344 BOOL search_pointers(FILE *LogFile,     // in: text log file to write to
    1345                      ULONG stackofs,
    1346                      USHORT var_no)
     1344static BOOL search_pointers(FILE *LogFile,     // in: text log file to write to
     1345                            ULONG stackofs,
     1346                            USHORT var_no)
    13471347{
    13481348    USHORT          pos, upos;
Note: See TracChangeset for help on using the changeset viewer.