mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.9 KiB
58 lines
1.9 KiB
/************************************************************************
|
|
* *
|
|
* LCMEM.H *
|
|
* *
|
|
* Copyright (C) Microsoft Corporation 1994 *
|
|
* All Rights reserved. *
|
|
* *
|
|
************************************************************************/
|
|
|
|
#ifndef LCMEM_H
|
|
#define LCMEM_H
|
|
|
|
#define THIS_FILE __FILE__
|
|
|
|
// These two functions must be supplied by the application
|
|
|
|
void STDCALL AssertErrorReport(PCSTR pszExpression, UINT line, PCSTR pszFile);
|
|
|
|
#if defined(_DEBUG)
|
|
|
|
#define lcCalloc(cb) tcalloc(cb, __LINE__, THIS_FILE)
|
|
#define lcFree(pv) tfree(pv, __LINE__, THIS_FILE)
|
|
#define lcClearFree(pv) tclearfree((void**) pv, __LINE__, THIS_FILE)
|
|
#define lcHeapCheck() theapcheck(__LINE__, THIS_FILE)
|
|
#define lcMalloc(cb) tmalloc(cb, __LINE__, THIS_FILE)
|
|
#define lcReAlloc(pv, cb) trealloc(pv, cb, __LINE__, THIS_FILE)
|
|
|
|
#else
|
|
|
|
#define lcCalloc(cb) tcalloc(cb)
|
|
#define lcFree(pv) tfree(pv)
|
|
#define lcClearFree(pv) tclearfree((void**) pv)
|
|
#define lcHeapCheck() theapcheck()
|
|
#define lcMalloc(cb) tmalloc(cb)
|
|
#define lcReAlloc(pv, cb) trealloc(pv, cb)
|
|
|
|
#endif
|
|
|
|
int STDCALL lcSize(void* pv); // allocated size of memory object
|
|
char* STDCALL lcStrDup(const char* psz);
|
|
|
|
#if defined(_DEBUG)
|
|
void* STDCALL tcalloc(int cb, int line, const char* pszFileName);
|
|
void STDCALL tfree(void* pv, int line, const char* pszFileName);
|
|
void STDCALL tclearfree(void** pv, int line, const char* pszFileName);
|
|
int STDCALL theapcheck(int line, const char* pszCallersFile);
|
|
void* STDCALL tmalloc(int cb, int line, const char* pszFileName);
|
|
void* STDCALL trealloc(void* pv, int cb, int line, const char* pszFileName);
|
|
#else
|
|
void* STDCALL tcalloc(int cb);
|
|
void STDCALL tfree(void* pv);
|
|
void STDCALL tclearfree(void** pv);
|
|
int STDCALL theapcheck(void);
|
|
void* STDCALL tmalloc(int cb);
|
|
void* STDCALL trealloc(void* pv, int cb);
|
|
#endif
|
|
|
|
#endif // LCMEM_H
|