* Replace license text in headers with SPDX identifiers. * Remove specific license info from outdated readme.txt, instead leave details to the source files. * Add list of SPDX license identifiers used, and corresponding license texts. * Update copyright dates while we're at it. Ref D14069, T95597
24 lines
439 B
C
24 lines
439 B
C
/* SPDX-License-Identifier: Apache-2.0
|
|
* Copyright 2011-2022 Blender Foundation */
|
|
|
|
#ifndef __CCL_API_H__
|
|
#define __CCL_API_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* create python module _cycles used by addon */
|
|
|
|
void *CCL_python_module_init(void);
|
|
|
|
void CCL_init_logging(const char *argv0);
|
|
void CCL_start_debug_logging(void);
|
|
void CCL_logging_verbosity_set(int verbosity);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __CCL_API_H__ */
|