Files
test2/source/blender/freestyle/intern/python/BPy_Nature.h

34 lines
800 B
C
Raw Normal View History

#ifndef FREESTYLE_PYTHON_NATURE_H
#define FREESTYLE_PYTHON_NATURE_H
#include <Python.h>
#include "../winged_edge/Nature.h"
#ifdef __cplusplus
extern "C" {
#endif
///////////////////////////////////////////////////////////////////////////////////////////
extern PyTypeObject Nature_Type;
#define BPy_Nature_Check(v) ( PyObject_IsInstance( (PyObject *) v, (PyObject *) &Nature_Type) )
/*---------------------------Python BPy_Nature structure definition----------*/
typedef struct {
PyLongObject i;
} BPy_Nature;
/*---------------------------Python BPy_Nature visible prototypes-----------*/
int Nature_Init( PyObject *module );
///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif
#endif /* FREESTYLE_PYTHON_NATURE_H */