Blender  V3.3
BPy_IntegrationType.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 
7 #pragma once
8 
9 extern "C" {
10 #include <Python.h>
11 }
12 
13 #include "../view_map/Interface1D.h"
14 
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
18 
20 
21 extern PyTypeObject IntegrationType_Type;
22 
23 #define BPy_IntegrationType_Check(v) \
24  (PyObject_IsInstance((PyObject *)v, (PyObject *)&IntegrationType_Type))
25 
26 /*---------------------------Python BPy_IntegrationType visible prototypes-----------*/
27 
28 int IntegrationType_Init(PyObject *module);
29 
31 
32 #ifdef __cplusplus
33 }
34 #endif
PyTypeObject IntegrationType_Type
int IntegrationType_Init(PyObject *module)
static struct PyModuleDef module
Definition: python.cpp:972