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