Blender V5.0
script_ops.cc
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2008 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
8
9#include <cstdlib>
10
11#include "WM_api.hh"
12
13#include "script_intern.hh"
14
15/* ************************** registration **********************************/
16
22
23void script_keymap(wmKeyConfig * /*keyconf*/)
24{
25 /* Script space is deprecated, and doesn't need a keymap */
26}
void SCRIPT_OT_reload(wmOperatorType *ot)
void SCRIPT_OT_python_file_run(wmOperatorType *ot)
void script_operatortypes()
Definition script_ops.cc:17
void script_keymap(wmKeyConfig *)
Definition script_ops.cc:23
void WM_operatortype_append(void(*opfunc)(wmOperatorType *))