Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-06-24 19:10:34 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-06-24 19:10:34 +0400
commit74520bd1ef6ab4264f5e6a24269f7ac3b85b4e23 (patch)
tree427a357fa3bcee7e1d2c785ce4353a55664dbd60 /source/blender/blenlib/BLI_callbacks.h
parent05fb0e2d61f49b138e4f1c0abd8465cf77f95eca (diff)
move callbacks file out of intern (only contains 1 function but re-using it for new callback api)
Diffstat (limited to 'source/blender/blenlib/BLI_callbacks.h')
-rw-r--r--source/blender/blenlib/BLI_callbacks.h44
1 files changed, 44 insertions, 0 deletions
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
+