2023-06-14 16:52:36 +10:00
|
|
|
/* SPDX-FileCopyrightText: 2011-2022 Blender Foundation
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0 */
|
2012-01-09 16:58:01 +00:00
|
|
|
|
2024-12-26 17:53:56 +01:00
|
|
|
#pragma once
|
2012-01-09 16:58:01 +00:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* create python module _cycles used by addon */
|
|
|
|
|
|
|
|
|
|
void *CCL_python_module_init(void);
|
|
|
|
|
|
2014-09-08 18:01:24 +06:00
|
|
|
void CCL_init_logging(const char *argv0);
|
|
|
|
|
void CCL_start_debug_logging(void);
|
2025-01-01 18:15:54 +01:00
|
|
|
void CCL_logging_verbosity_set(const int verbosity);
|
2014-09-08 18:01:24 +06:00
|
|
|
|
2012-01-09 16:58:01 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|