[go: up one dir, main page]

Menu

[r7]: / trunk / src / lib / memutils.h  Maximize  Restore  History

Download this file

16 lines (11 with data), 267 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
#ifndef __memutils_h__
#define __memutils_h__
using namespace std;
#include "config.h"
class memutils
{
public:
static void* mymalloc(const char* wherefrom,__uint32 elcount,__uint32 elsize);
static void myfree(const char* wherefrom,void* freewhat);
};
#endif