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-12 13:18:26 +0300
committerTon Roosendaal <ton@blender.org>2008-12-12 13:18:26 +0300
commit7f3a34d16c9eeda100a6b84d8374d848074702a2 (patch)
tree65d585aeae7cbc3868ae4e829cf6e4d88dd7e2d9 /source/blender/editors/space_api/space.c
parent6f6eee09238a751c42aad9df84d7f8b2f131841c (diff)
2.5
Resolved cyclic calls for editors. Now there's a space_api/ module, here you can use functions calling other editor modules. The functions in the module are only used by the WindowManager module to initialize space types. Note for sconzers and MSVC and cmake: the proper linking order for editors is: - space_api - space_xxx - object / mesh / transform / etc - interface - util / datafiles - screen
Diffstat (limited to 'source/blender/editors/space_api/space.c')
-rw-r--r--source/blender/editors/space_api/space.c46
1 files changed, 46 insertions, 0 deletions
diff --git a/source/blender/editors/space_api/space.c b/source/blender/editors/space_api/space.c
new file mode 100644
index 00000000000..df844dc527d
--- /dev/null
+++ b/source/blender/editors/space_api/space.c
@@ -0,0 +1,46 @@
+/**
+ * $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) 2007 Blender Foundation.
+ * All rights reserved.
+ *
+ *
+ * Contributor(s): Blender Foundation
+ *
+ * ***** END GPL LICENSE BLOCK *****
+ */
+
+#include <string.h>
+#include <stdio.h>
+
+#include "MEM_guardedalloc.h"
+
+#include "BLI_blenlib.h"
+#include "BLI_arithb.h"
+
+#include "BKE_global.h"
+#include "BKE_screen.h"
+
+#include "ED_area.h"
+#include "ED_screen.h"
+
+/* */
+
+
+