|
Blender
V2.59
|
00001 /* blenkernel/script.c 00002 * 00003 * 00004 * $Id: script.c 35247 2011-02-27 20:40:57Z jesterking $ 00005 * 00006 * Function(s) related to struct script management. 00007 * 00008 * ***** BEGIN GPL LICENSE BLOCK ***** 00009 * 00010 * This program is free software; you can redistribute it and/or 00011 * modify it under the terms of the GNU General Public License 00012 * as published by the Free Software Foundation; either version 2 00013 * of the License, or (at your option) any later version. 00014 * 00015 * This program is distributed in the hope that it will be useful, 00016 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00017 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00018 * GNU General Public License for more details. 00019 * 00020 * You should have received a copy of the GNU General Public License 00021 * along with this program; if not, write to the Free Software Foundation, 00022 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 00023 * 00024 * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV. 00025 * All rights reserved. 00026 * 00027 * This is a new part of Blender. 00028 * 00029 * Contributor(s): Willian P. Germano. 00030 * 00031 * ***** END GPL LICENSE BLOCK ***** 00032 */ 00033 00040 #include "MEM_guardedalloc.h" 00041 00042 /* 00043 00044 #ifdef WITH_PYTHON 00045 #include "BPY_extern.h" // Blender Python library 00046 #endif 00047 */ 00048 00049 /* XXX this function and so also the file should not be needed anymore, 00050 * since we have to force clearing all Python related data before freeing 00051 * Blender's library. Still testing, will decide later (Willian). */ 00052