0ad/terrain/bak/0/Memory.h
janwas f4f969482e Initial revision
This was SVN commit r8.
2003-11-03 16:17:21 +00:00

23 lines
543 B
C
Executable File

//***********************************************************
//
// Name: Memory.H
// Last Update: 2/3/02
// Author: Poya Manouchehri
//
// Description: Simple Functions for memory alloc/reallocation
//
//***********************************************************
#ifndef MEMORY_H
#define MEMORY_H
#include <windows.h>
//Allocates memory
extern void *Alloc (unsigned int size);
//Reallocates a chunk of memory
extern void *Realloc (void *ptr, unsigned int size);
//Frees the memory for allocation
extern void FreeMem (void *ptr);
#endif