AudRecordLib
|
00001 00005 #ifndef AUDRECORDLIB_ALLOC_H 00006 #define AUDRECORDLIB_ALLOC_H 00007 00008 #include "exports.h" 00009 00018 PVOID SetAllocFreeFunctionsInternal(pfnAlloc allocFn, pfnFree freeFn, PVOID pData); 00019 00025 BOOL InitialiseAlloc(HMODULE hModule); 00026 00032 void UninitialiseAlloc(HMODULE hModule); 00033 00034 #ifdef _DEBUG 00035 00038 void DisplayOutstandingAllocs(); 00039 #else 00040 #define DisplayOutstandingAllocs() (void)0 00041 #endif 00042 00045 #endif