Blender  V3.3
collada.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 
7 #pragma once
8 
9 #include <stdlib.h>
10 
11 #include "ExportSettings.h"
12 #include "ImportSettings.h"
13 
14 #include "BLI_linklist.h"
15 #include "BLI_path_util.h"
16 #include "RNA_types.h"
17 
18 #ifdef __cplusplus
19 extern "C" {
20 #endif
21 
22 struct bContext;
23 
24 /*
25  * both return 1 on success, 0 on error
26  */
27 int collada_import(struct bContext *C, ImportSettings *import_settings);
28 
29 int collada_export(struct bContext *C, ExportSettings *export_settings);
30 
31 #ifdef __cplusplus
32 }
33 #endif
#define C
Definition: RandGen.cpp:25
int collada_export(struct bContext *C, ExportSettings *export_settings)
Definition: collada.cpp:57
int collada_import(struct bContext *C, ImportSettings *import_settings)
Definition: collada.cpp:47