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

misc. updates

File:
1 edited

Legend:

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

    r133 r142  
    223223 */
    224224
    225 VOID LogError(const char *pcszFormat,     // in: format string (like with printf)
    226               ...)                        // in: additional stuff (like with printf)
     225static VOID LogError(const char *pcszFormat,     // in: format string (like with printf)
     226                     ...)                        // in: additional stuff (like with printf)
    227227{
    228228    if (G_pMemdLogFunc)
     
    244244 */
    245245
    246 PHEAPITEM FindHeapItem(void *p)
     246static PHEAPITEM FindHeapItem(void *p)
    247247{
    248248    return ((PHEAPITEM)treeFind(G_pHeapItemsRoot,
     
    257257 */
    258258
    259 VOID FillHeapItem(PHEAPITEM pHeapItem,
    260                   void *prc,
    261                   size_t stSize,
    262                   const char *pcszSourceFile, // in: source file name
    263                   unsigned long ulLine,       // in: source line
    264                   const char *pcszFunction)   // in: function name
     259static VOID FillHeapItem(PHEAPITEM pHeapItem,
     260                         void *prc,
     261                         size_t stSize,
     262                         const char *pcszSourceFile, // in: source file name
     263                         unsigned long ulLine,       // in: source line
     264                         const char *pcszFunction)   // in: function name
    265265{
    266266    pHeapItem->ulSize = stSize;
     
    287287 */
    288288
    289 VOID CheckMagics(const char *pcszParentFunc,
    290                  PHEAPITEM pHeapItem,
    291                  PBYTE p,
    292                  const char *pcszSourceFile, // in: source file name
    293                  unsigned long ulLine,       // in: source line
    294                  const char *pcszFunction)   // in: function name
     289static VOID CheckMagics(const char *pcszParentFunc,
     290                        PHEAPITEM pHeapItem,
     291                        PBYTE p,
     292                        const char *pcszSourceFile, // in: source file name
     293                        unsigned long ulLine,       // in: source line
     294                        const char *pcszFunction)   // in: function name
    295295{
    296296    void    *pBeforeMagic = ((PBYTE)p) - sizeof(MEMBLOCKMAGIC_HEAD);
Note: See TracChangeset for help on using the changeset viewer.