Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1 | /* Module support interface */ |
2 | |||||
3 | struct methodlist { | ||||
4 | char *ml_name; | ||||
5 | method ml_meth; | ||||
6 | }; | ||||
7 | |||||
8 | extern object *findmethod PROTO((struct methodlist *, object *, char *)); | ||||
9 | extern object *initmodule PROTO((char *, struct methodlist *)); |