diff options
author | Guido van Rossum <guido@python.org> | 1997-08-07 00:11:34 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-08-07 00:11:34 (GMT) |
commit | 29c1ea5af0b9d309c1342db5b75f5e0c7618e8e7 (patch) | |
tree | 8a06d2a10367a7a09a1a77351109b42ccc0e96c8 /PC/config.c | |
parent | fb84255e6756adcb4c38e23d63c0f3c017012789 (diff) | |
download | cpython-29c1ea5af0b9d309c1342db5b75f5e0c7618e8e7.zip cpython-29c1ea5af0b9d309c1342db5b75f5e0c7618e8e7.tar.gz cpython-29c1ea5af0b9d309c1342db5b75f5e0c7618e8e7.tar.bz2 |
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.
Diffstat (limited to 'PC/config.c')
-rw-r--r-- | PC/config.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/PC/config.c b/PC/config.c index 97f9de4..39011bc 100644 --- a/PC/config.c +++ b/PC/config.c @@ -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 -- */ |