1#ifndef PyObjC_registry_H
2#define PyObjC_registry_H
3/* Where's the documentation? */
4
5PyObject* PyObjC_NewRegistry(void);
6int PyObjC_AddToRegistry(PyObject*, PyObject*, PyObject*, PyObject*);
7PyObject* PyObjC_FindInRegistry(PyObject*, Class, SEL);
8
9#endif /* PyObjC_registry_H */
10