From: Guido van Rossum Date: Mon, 29 Jun 1998 20:34:46 +0000 (+0000) Subject: Add PyImport_AppendInittab() an PyImport_ExtendInittab(). X-Git-Tag: v1.5.2a1~385 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=16926bd75e6292e7096d3bb8bd47a007823ef85a;p=python Add PyImport_AppendInittab() an PyImport_ExtendInittab(). --- diff --git a/Include/import.h b/Include/import.h index 6388ae6ca5..0f6e92f34a 100644 --- a/Include/import.h +++ b/Include/import.h @@ -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;