Got the new structure working with MSVC 4.2.

main_nt.c is gone -- we can use Modules/python.c now.
Added Mark Hammond's module msvcrt.c (untested).
Added several new symbols.
This commit is contained in:
Guido van Rossum 1997-08-07 00:11:34 +00:00
parent fb84255e67
commit 29c1ea5af0
5 changed files with 192 additions and 3320 deletions

View file

@ -60,6 +60,9 @@ extern void inittime();
extern void initthread();
extern void initcStringIO();
extern void initcPickle();
#ifdef WIN32
extern void initmsvcrt();
#endif
/* -- ADDMODULE MARKER 1 -- */
@ -98,6 +101,9 @@ struct _inittab _PyImport_Inittab[] = {
#endif
{"cStringIO", initcStringIO},
{"cPickle", initcPickle},
#ifdef WIN32
{"msvcrt", initmsvcrt},
#endif
/* -- ADDMODULE MARKER 2 -- */