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:
Diffstat (limited to 'source/blender/collada/collada.h')
-rw-r--r--source/blender/collada/collada.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/source/blender/collada/collada.h b/source/blender/collada/collada.h
new file mode 100644
index 00000000000..cccca072b40
--- /dev/null
+++ b/source/blender/collada/collada.h
@@ -0,0 +1,19 @@
+#ifndef BLENDER_COLLADA_H
+#define BLENDER_COLLADA_H
+
+struct bContext;
+struct Scene;
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+ /*
+ * both return 1 on success, 0 on error
+ */
+ int collada_import(bContext *C, const char *filepath);
+ int collada_export(Scene *sce, const char *filepath);
+#ifdef __cplusplus
+}
+#endif
+
+#endif