Files
test2/source/blender/io/collada/collada.h
Campbell Barton 381898b6dc Refactor: move BLI_path_util header to C++, rename to BLI_path_utils
Move to a C++ header to allow C++ features to be used there,
use the "utils" suffix as it's preferred for new files.

Ref !128147
2024-09-26 21:13:39 +10:00

36 lines
588 B
C

/* SPDX-FileCopyrightText: 2023 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup collada
*/
#pragma once
#include <stdlib.h>
#include "ExportSettings.h"
#include "ImportSettings.h"
#include "BLI_linklist.h"
#include "BLI_path_utils.hh"
#include "RNA_types.hh"
#ifdef __cplusplus
extern "C" {
#endif
struct bContext;
/*
* both return 1 on success, 0 on error
*/
int collada_import(struct bContext *C, ImportSettings *import_settings);
int collada_export(struct bContext *C, ExportSettings *export_settings);
#ifdef __cplusplus
}
#endif