From 74520bd1ef6ab4264f5e6a24269f7ac3b85b4e23 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 24 Jun 2011 15:10:34 +0000 Subject: move callbacks file out of intern (only contains 1 function but re-using it for new callback api) --- source/blender/blenlib/BLI_callbacks.h | 44 ++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 source/blender/blenlib/BLI_callbacks.h (limited to 'source/blender/blenlib/BLI_callbacks.h') diff --git a/source/blender/blenlib/BLI_callbacks.h b/source/blender/blenlib/BLI_callbacks.h new file mode 100644 index 00000000000..9f6ac0c391f --- /dev/null +++ b/source/blender/blenlib/BLI_callbacks.h @@ -0,0 +1,44 @@ +/* + * $Id: + * + * These callbacks are needed in the lib + * + * ***** BEGIN GPL LICENSE BLOCK ***** + * + * 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 2 + * 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 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV. + * All rights reserved. + * + * The Original Code is: all of this file. + * + * Contributor(s): mar 2001 Nzc + * + * ***** END GPL LICENSE BLOCK ***** + */ + +/** \file blender/blenlib/intern/BLI_callbacks.h + * \ingroup bli + */ + + +#ifndef BLI_CALLBACKS_H +#define BLI_CALLBACKS_H + +// This is blenlib internal only +void callLocalErrorCallBack(const char* msg); + +#endif + -- cgit v1.2.3