Leaked source code of windows server 2003
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.
|
|
//
// cuimem.h
// = memory management functions in CUILIB =
//
#ifndef CUIMEM_H
#define CUIMEM_H
// note: temporary, use Cicero memmgr as currently it does.
#include "mem.h"
#define MemAlloc( uCount ) cicMemAllocClear( (uCount) )
#define MemFree( pv ) cicMemFree( (pv) )
#define MemReAlloc( pv, uCount ) cicMemReAlloc( (pv), (uCount) )
#define MemCopy( dst, src, uCount ) memcpy( (dst), (src), (uCount) )
#define MemMove( dst, src, uCount ) memmove( (dst), (src), (uCount) )
#define MemSet( dst, c, uCount ) memset( (dst), (c), (uCount) )
#endif /* CUIMEM_H */
|