Mercurial > audlegacy
view libvisual/lv_mem.h @ 25:66610fc7de2d trunk
[svn] Remove queue.png from build.list. *grumble*
author | nenolod |
---|---|
date | Tue, 25 Oct 2005 17:50:25 -0700 |
parents | 0db4a1dc75c4 |
children |
line wrap: on
line source
/* Libvisual - The audio visualisation framework. * * Copyright (C) 2004, 2005 Dennis Smit <ds@nerds-incorporated.org> * * Authors: Dennis Smit <ds@nerds-incorporated.org> * * $Id: * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef _LV_MEM_H #define _LV_MEM_H #include <libvisual/lvconfig.h> #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ #ifndef __attribute_malloc__ #define __attribute_malloc__ #endif void *visual_mem_malloc0 (visual_size_t nbytes) __attribute_malloc__; int visual_mem_free (void *ptr); void *visual_mem_copy (void *dest, const void *src, size_t n); /** * @ingroup VisMem * * Convenient macro to request @a n_structs structures of type @a struct_type * initialized to 0. */ #define visual_mem_new0(struct_type, n_structs) \ ((struct_type *) visual_mem_malloc0 (((visual_size_t) sizeof (struct_type)) * ((visual_size_t) (n_structs)))) #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* _LV_MEM_H */