Blender V4.3
BPy_IntegrationType.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 IntegrationType_Type;
24
25#define BPy_IntegrationType_Check(v) \
26 (PyObject_IsInstance((PyObject *)v, (PyObject *)&IntegrationType_Type))
27
28/*---------------------------Python BPy_IntegrationType visible prototypes-----------*/
29
30int IntegrationType_Init(PyObject *module);
31
33
34#ifdef __cplusplus
35}
36#endif
PyTypeObject IntegrationType_Type
int IntegrationType_Init(PyObject *module)
Interface 1D and related tools definitions.
static struct PyModuleDef module
Definition python.cpp:991