The last good commit wasf57e4c5b98. After this one more fix was committed, this one is preserved as well:67bd678887.
21 lines
323 B
C
21 lines
323 B
C
/* SPDX-FileCopyrightText: 2023 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/** \file
|
|
* \ingroup pythonintern
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern PyMethodDef BPY_cli_command_register_def;
|
|
extern PyMethodDef BPY_cli_command_unregister_def;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|