Changeset 142 for trunk/src/helpers/memdebug.c
- Timestamp:
- Feb 21, 2002, 8:24:22 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/memdebug.c
r133 r142 223 223 */ 224 224 225 VOID LogError(const char *pcszFormat, // in: format string (like with printf)226 ...) // in: additional stuff (like with printf)225 static VOID LogError(const char *pcszFormat, // in: format string (like with printf) 226 ...) // in: additional stuff (like with printf) 227 227 { 228 228 if (G_pMemdLogFunc) … … 244 244 */ 245 245 246 PHEAPITEM FindHeapItem(void *p)246 static PHEAPITEM FindHeapItem(void *p) 247 247 { 248 248 return ((PHEAPITEM)treeFind(G_pHeapItemsRoot, … … 257 257 */ 258 258 259 VOID FillHeapItem(PHEAPITEM pHeapItem,260 void *prc,261 size_t stSize,262 const char *pcszSourceFile, // in: source file name263 unsigned long ulLine, // in: source line264 const char *pcszFunction) // in: function name259 static 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 265 265 { 266 266 pHeapItem->ulSize = stSize; … … 287 287 */ 288 288 289 VOID CheckMagics(const char *pcszParentFunc,290 PHEAPITEM pHeapItem,291 PBYTE p,292 const char *pcszSourceFile, // in: source file name293 unsigned long ulLine, // in: source line294 const char *pcszFunction) // in: function name289 static 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 295 295 { 296 296 void *pBeforeMagic = ((PBYTE)p) - sizeof(MEMBLOCKMAGIC_HEAD);
Note:
See TracChangeset
for help on using the changeset viewer.