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:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-06-18 13:48:47 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-06-18 13:48:47 +0400
commite066d80dbc945516986a930a959f39e30367b1e6 (patch)
treee2ae3252c4b14d8533ea77ab94ddcec6888f0f9b /source/blender/editors/io/io_ops.h
parent54022cfa1c5c3274ecd320359169a389bfef55c6 (diff)
Forgot to define WITH_COLLADA in SCons in recent commit
Also fix some issues with header files: - Added ifndef .. define .. endif blocks to be sure headers are not including twice. - DO not include WM stuff in headers, use anonymous structure names instead.
Diffstat (limited to 'source/blender/editors/io/io_ops.h')
-rw-r--r--source/blender/editors/io/io_ops.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/source/blender/editors/io/io_ops.h b/source/blender/editors/io/io_ops.h
index dd494eb77eb..1e2c4443e43 100644
--- a/source/blender/editors/io/io_ops.h
+++ b/source/blender/editors/io/io_ops.h
@@ -28,4 +28,9 @@
* \ingroup editor/io
*/
-extern void ED_operatortypes_io(void);
+#ifndef __IO_OPS_H__
+#define __IO_OPS_H__
+
+void ED_operatortypes_io(void);
+
+#endif