blob: d406bf60d5cfd503e80836e73034ecf908b92d02 [file] [log] [blame]
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001/* Module support interface */
2
3struct methodlist {
4 char *ml_name;
5 method ml_meth;
6};
7
8extern object *findmethod PROTO((struct methodlist *, object *, char *));
9extern object *initmodule PROTO((char *, struct methodlist *));