/* $Id: ptrinfo.h,v 1.3 2006/09/17 08:19:15 maxim Exp $ * */ #ifndef PTRINFO_H #define PTRINFO_H void addPtr(void* ptr, int size, char* file, int line); void delPtr(void* ptr, char* file, int line); void showPtrs(int full); #endif