Blender V4.3
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#ifndef __CCL_API_H__
6#define __CCL_API_H__
7
8#ifdef __cplusplus
9extern "C" {
10#endif
11
12/* create python module _cycles used by addon */
13
14void *CCL_python_module_init(void);
15
16void CCL_init_logging(const char *argv0);
18void CCL_logging_verbosity_set(int verbosity);
19
20#ifdef __cplusplus
21}
22#endif
23
24#endif /* __CCL_API_H__ */
void CCL_logging_verbosity_set(int verbosity)
Definition logging.cpp:18
void CCL_start_debug_logging(void)
Definition logging.cpp:13
void CCL_init_logging(const char *argv0)
Definition logging.cpp:8
void * CCL_python_module_init(void)
Definition python.cpp:1005