Blender V4.5
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
8
9#pragma once
10
11#include <cstdlib>
12
13#include "ExportSettings.h"
14#include "ImportSettings.h"
15
16#include "RNA_types.hh"
17
18struct bContext;
19
20/*
21 * both return 1 on success, 0 on error
22 */
23int collada_import(struct bContext *C, ImportSettings *import_settings);
24
25int collada_export(struct bContext *C, ExportSettings *export_settings);
#define C
Definition RandGen.cpp:29
int collada_export(struct bContext *C, ExportSettings *export_settings)
Definition collada.cpp:50
int collada_import(struct bContext *C, ImportSettings *import_settings)
Definition collada.cpp:40