added some include for the apps

This commit is contained in:
Gerhard Stein
2016-12-27 21:53:55 +01:00
parent 73d920684c
commit 82b7b33327
99 changed files with 16709 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
/* simple namespace object interface */
#ifndef NAMESPACEOBJECT_H
#define NAMESPACEOBJECT_H
#ifdef __cplusplus
extern "C" {
#endif
PyAPI_DATA(PyTypeObject) _PyNamespace_Type;
PyAPI_FUNC(PyObject *) _PyNamespace_New(PyObject *kwds);
#ifdef __cplusplus
}
#endif
#endif /* !NAMESPACEOBJECT_H */