www.pudn.com > avs-m3.rar > memalloc.h
/*! *************************************************************************** * \file * memalloc.h * * \brief * * * * \date * 01. Apr 2005 *************************************************************************** */ #ifndef _MEMALLOC_H_ #define _MEMALLOC_H_ #include "global.h" int get_mem2D(byte ***array2D, int rows, int columns); int get_mem2Dint(int ***array2D, int rows, int columns); int get_mem3D(byte ****array2D, int frames, int rows, int columns); int get_mem3Dint(int ****array3D, int frames, int rows, int columns); void free_mem2D(byte **array2D); void free_mem2Dint(int **array2D); void free_mem3D(byte ***array2D, int frames); void free_mem3Dint(int ***array3D, int frames); void no_mem_exit(char *where); #endif