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:
authorTon Roosendaal <ton@blender.org>2008-12-14 13:52:48 +0300
committerTon Roosendaal <ton@blender.org>2008-12-14 13:52:48 +0300
commit3a58eddec5d47973f19c1c6102fa3e45a27a71ba (patch)
tree19f33f95274d2a8f17154a11edc4bf4c12967945 /source/blender/editors/space_info/info_intern.h
parent616ab233fa1d91453dd1790d7126bdc41dcb12f9 (diff)
2.5
The basics for InfoSpace. Also added InfoSpace data to area by default, older files allowed to have nothing here (space empty). (prevents reported crasher in switching space info to others). Also: added ifdeffed code in readfile.c to debug missing memory frees from data read from files. (instead of "data from SCR" it will print the actual struct names).
Diffstat (limited to 'source/blender/editors/space_info/info_intern.h')
-rw-r--r--source/blender/editors/space_info/info_intern.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/source/blender/editors/space_info/info_intern.h b/source/blender/editors/space_info/info_intern.h
new file mode 100644
index 00000000000..213c0688f20
--- /dev/null
+++ b/source/blender/editors/space_info/info_intern.h
@@ -0,0 +1,39 @@
+/**
+ * $Id:
+ *
+ * ***** 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * The Original Code is Copyright (C) 2008 Blender Foundation.
+ * All rights reserved.
+ *
+ *
+ * Contributor(s): Blender Foundation
+ *
+ * ***** END GPL LICENSE BLOCK *****
+ */
+#ifndef ED_INFO_INTERN_H
+#define ED_INFO_INTERN_H
+
+/* internal exports only */
+
+
+/* info_header.c */
+void info_header_buttons(const bContext *C, ARegion *ar);
+
+
+#endif /* ED_INFO_INTERN_H */
+