Changeset 222 for trunk/src/helpers/memdebug.c
- Timestamp:
- Sep 3, 2002, 8:17:46 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/memdebug.c
r164 r222 223 223 */ 224 224 225 staticVOID LogError(const char *pcszFormat, // in: format string (like with printf)225 STATIC VOID LogError(const char *pcszFormat, // in: format string (like with printf) 226 226 ...) // in: additional stuff (like with printf) 227 227 { … … 244 244 */ 245 245 246 staticPHEAPITEM FindHeapItem(void *p)246 STATIC PHEAPITEM FindHeapItem(void *p) 247 247 { 248 248 return ((PHEAPITEM)treeFind(G_pHeapItemsRoot, … … 257 257 */ 258 258 259 staticVOID FillHeapItem(PHEAPITEM pHeapItem,259 STATIC VOID FillHeapItem(PHEAPITEM pHeapItem, 260 260 void *prc, 261 261 size_t stSize, … … 287 287 */ 288 288 289 staticVOID CheckMagics(const char *pcszParentFunc,289 STATIC VOID CheckMagics(const char *pcszParentFunc, 290 290 PHEAPITEM pHeapItem, 291 291 PBYTE p,
Note:
See TracChangeset
for help on using the changeset viewer.