Blender V4.5
CCL_api.h
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2011-2022 Blender Foundation
2 *
3 * SPDX-License-Identifier: Apache-2.0 */
4
5#pragma once
6
7#ifdef __cplusplus
8extern "C" {
9#endif
10
11/* create python module _cycles used by addon */
12
13void *CCL_python_module_init(void);
14
15void CCL_init_logging(const char *argv0);
17void CCL_logging_verbosity_set(const int verbosity);
18
19#ifdef __cplusplus
20}
21#endif
void CCL_start_debug_logging(void)
Definition logging.cpp:13
void CCL_init_logging(const char *argv0)
Definition logging.cpp:8
void CCL_logging_verbosity_set(const int verbosity)
Definition logging.cpp:18
void * CCL_python_module_init(void)
Definition python.cpp:810