Blender V5.0
bpy_operator_wrap.hh
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2023 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
8
9#pragma once
10
11#include <Python.h>
12
13struct wmOperatorType;
14
20[[nodiscard]] PyObject *PYOP_wrap_macro_define(PyObject *self, PyObject *args);
21
22/* Exposed to RNA/WM API. */
23
28void BPY_RNA_operator_wrapper(wmOperatorType *ot, void *userdata);
PyObject * self
void BPY_RNA_operator_macro_wrapper(wmOperatorType *ot, void *userdata)
PyObject * PYOP_wrap_macro_define(PyObject *self, PyObject *args)
void BPY_RNA_operator_wrapper(wmOperatorType *ot, void *userdata)
wmOperatorType * ot
Definition wm_files.cc:4237