⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gb_alloc.h

📁 Gambas is a graphical development environment based on a Basic interpreter, like Visual Basic. It us
💻 H
字号:
/***************************************************************************  alloc.h  Memory management routines  (c) 2000-2004 Beno� Minisini <gambas@users.sourceforge.net>  This program is free software; you can redistribute it and/or modify  it under the terms of the GNU General Public License as published by  the Free Software Foundation; either version 1, 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 General Public License for more details.  You should have received a copy of the GNU General Public License  along with this program; if not, write to the Free Software  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.***************************************************************************/#ifndef __GB_ALLOC_H#define __GB_ALLOC_H#define DEBUG_MEMORY 0#ifndef __GB_ALLOC_CEXTERN long MEMORY_count;#endif#if DEBUG_MEMORY#define ALLOC(_ptr, _size, _src)        MEMORY_alloc(_ptr, _size, _src)#define ALLOC_ZERO(_ptr, _size, _src)   MEMORY_alloc_zero(_ptr, _size, _src)#define REALLOC(_ptr, _size, _src)      MEMORY_realloc(_ptr, _size, _src)#define FREE(_ptr, _src)                MEMORY_free(_ptr, _src)PUBLIC void MEMORY_alloc(void *p_ptr, size_t size, const char *src);PUBLIC void MEMORY_alloc_zero(void *p_ptr, size_t size, const char *src);PUBLIC void MEMORY_realloc(void *p_ptr, size_t size, const char *src);PUBLIC void MEMORY_free(void *p_ptr, const char *src);PUBLIC void MEMORY_check(void);PUBLIC void MEMORY_verify(void);PUBLIC void MEMORY_check_ptr(void *ptr);#else#define ALLOC(_ptr, _size, _src)        MEMORY_alloc(_ptr, _size)#define ALLOC_ZERO(_ptr, _size, _src)   MEMORY_alloc_zero(_ptr, _size)#define REALLOC(_ptr, _size, _src)      MEMORY_realloc(_ptr, _size)#define FREE(_ptr, _src)                MEMORY_free(_ptr)PUBLIC void MEMORY_alloc(void *p_ptr, size_t size);PUBLIC void MEMORY_alloc_zero(void *p_ptr, size_t size);PUBLIC void MEMORY_realloc(void *p_ptr, size_t size);PUBLIC void MEMORY_free(void *p_ptr);PUBLIC void MEMORY_check(void);#endifPUBLIC void MEMORY_init(void);PUBLIC void MEMORY_exit(void);#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -