Files
test2/source/blender/editors/space_script/script_intern.h
Campbell Barton 52acf6a6ec Cleanup: correct file names in comments after C -> C++ renaming
Use back-tick quotes to differentiate these from plain text.
2023-07-31 13:02:30 +10:00

30 lines
490 B
C

/* SPDX-FileCopyrightText: 2008 Blender Foundation
*
* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup spscript
*/
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
/* internal exports only */
/* `script_ops.cc` */
void script_operatortypes(void);
void script_keymap(struct wmKeyConfig *keyconf);
/* `script_edit.cc` */
void SCRIPT_OT_reload(struct wmOperatorType *ot);
void SCRIPT_OT_python_file_run(struct wmOperatorType *ot);
#ifdef __cplusplus
}
#endif