1 ///////////////////////////////////////////////////////////////////////////////
2 // $Source: x:/prj/tech/libsrc/lgalloc/RCS/memcore.h $
4 // $Date: 1998/06/10 13:58:16 $
15 EXTERN IDebugMalloc
* g_pMalloc
;
17 EXTERN IMalloc
* g_pMalloc
;
21 extern cHeapDebug
* g_pHeapDebug
;
22 extern BOOL g_bAllocDumpLeaks
;
25 extern cMemAllocTimer
* g_pMemAllocTimer
;
28 extern void AllocThreadLock(void);
29 extern void AllocThreadUnlock(void);
32 extern volatile cFastMutex g_AllocMutex
;
34 #define AllocThreadLock() g_AllocMutex.Lock()
35 #define AllocThreadUnlock() g_AllocMutex.Unlock()
39 #endif /* !__MEMCORE_H */