Blender V4.3
BPy_UnaryFunction0D.h
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2023 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
9#pragma once
10
11extern "C" {
12#include <Python.h>
13}
14
16
17#ifdef __cplusplus
18extern "C" {
19#endif
20
22
23extern PyTypeObject UnaryFunction0D_Type;
24
25#define BPy_UnaryFunction0D_Check(v) \
26 (PyObject_IsInstance((PyObject *)v, (PyObject *)&UnaryFunction0D_Type))
27
28/*---------------------------Python BPy_UnaryFunction0D structure definition----------*/
29typedef struct {
30 PyObject_HEAD
31 PyObject *py_uf0D;
33
34/*---------------------------Python BPy_UnaryFunction0D visible prototypes-----------*/
35
36int UnaryFunction0D_Init(PyObject *module);
37
39
40#ifdef __cplusplus
41}
42#endif
PyTypeObject UnaryFunction0D_Type
int UnaryFunction0D_Init(PyObject *module)
Functions taking 0D input.
static struct PyModuleDef module
Definition python.cpp:991
PyObject_HEAD PyObject * py_uf0D