Kaydet (Commit) 4ee68d91 authored tarafından Guido van Rossum's avatar Guido van Rossum

Add defs for struct _frozen and struct _frozen *PyImport_FrozenModules();

üst 8fa9b6f9
......@@ -45,8 +45,21 @@ struct _inittab {
void (*initfunc)();
};
/* This table is defined in config.c: */
extern struct _inittab inittab[];
struct _frozen {
char *name;
unsigned char *code;
int size;
};
/* Embedding apps may change this pointer to point to their favorite
collection of frozen modules: */
extern DL_IMPORT(struct _frozen *) PyImport_FrozenModules;
#ifdef __cplusplus
}
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment