Add PyImport_AppendInittab() an PyImport_ExtendInittab().

This commit is contained in:
Guido van Rossum 1998-06-29 20:34:46 +00:00
parent 8b3282be9f
commit 16926bd75e
1 changed files with 3 additions and 0 deletions

View File

@ -61,6 +61,9 @@ struct _inittab {
extern DL_IMPORT(struct _inittab *) PyImport_Inittab;
extern int PyImport_AppendInittab Py_PROTO((char *name, void (*initfunc)()));
extern int PyImport_ExtendInittab Py_PROTO((struct _inittab *newtab));
struct _frozen {
char *name;
unsigned char *code;