2023-08-16 00:20:26 +10:00
|
|
|
/* SPDX-FileCopyrightText: 2023 Blender Authors
|
2023-05-31 16:19:06 +02:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
2010-02-27 13:27:06 +00:00
|
|
|
|
2013-09-19 23:17:52 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
2019-02-18 08:08:12 +11:00
|
|
|
/** \file
|
|
|
|
|
* \ingroup pythonintern
|
2011-02-27 20:10:08 +00:00
|
|
|
*/
|
|
|
|
|
|
2025-01-07 12:39:13 +01:00
|
|
|
#include <Python.h>
|
|
|
|
|
|
2010-02-27 13:27:06 +00:00
|
|
|
struct BPy_StructRNA;
|
|
|
|
|
|
2012-12-20 13:29:58 +00:00
|
|
|
#if 0
|
2011-02-13 10:52:18 +00:00
|
|
|
PyObject *pyrna_callback_add(BPy_StructRNA *self, PyObject *args);
|
|
|
|
|
PyObject *pyrna_callback_remove(BPy_StructRNA *self, PyObject *args);
|
2012-12-20 13:29:58 +00:00
|
|
|
#endif
|
|
|
|
|
|
2020-09-04 20:59:13 +02:00
|
|
|
PyObject *pyrna_callback_classmethod_add(PyObject *self, PyObject *args);
|
|
|
|
|
PyObject *pyrna_callback_classmethod_remove(PyObject *self, PyObject *args);
|