This moves `space_script`, `space_statusbar`, `space_topbar`, `space_userpref`, `space_view3d` and `util`. Also see #103343. Pull Request: https://projects.blender.org/blender/blender/pulls/110015
30 lines
484 B
C
30 lines
484 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.c */
|
|
|
|
void script_operatortypes(void);
|
|
void script_keymap(struct wmKeyConfig *keyconf);
|
|
|
|
/* script_edit.c */
|
|
|
|
void SCRIPT_OT_reload(struct wmOperatorType *ot);
|
|
void SCRIPT_OT_python_file_run(struct wmOperatorType *ot);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|