Welcome to mirror list, hosted at ThFree Co, Russian Federation.

BPy_FalseUP0D.h « UnaryPredicate0D « python « intern « freestyle « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 399941d442d8426987fe2e1ea4bb14ac8c0ac1d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef FREESTYLE_PYTHON_FALSEUP0D_H
#define FREESTYLE_PYTHON_FALSEUP0D_H

#include "../BPy_UnaryPredicate0D.h"

#ifdef __cplusplus
extern "C" {
#endif

///////////////////////////////////////////////////////////////////////////////////////////

#include <Python.h>

extern PyTypeObject FalseUP0D_Type;

#define BPy_FalseUP0D_Check(v)	(  PyObject_IsInstance( (PyObject *) v, (PyObject *) &FalseUP0D_Type)  )

/*---------------------------Python BPy_FalseUP0D structure definition----------*/
typedef struct {
	BPy_UnaryPredicate0D py_up0D;
} BPy_FalseUP0D;

///////////////////////////////////////////////////////////////////////////////////////////

#ifdef __cplusplus
}
#endif

#endif /* FREESTYLE_PYTHON_FALSEUP0D_H */