summaryrefslogtreecommitdiffstats
path: root/PC/config.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-04-21 21:26:43 (GMT)
committerGuido van Rossum <guido@python.org>2000-04-21 21:26:43 (GMT)
commita8ee4c31bff512e1137656d6063e05a8ed204307 (patch)
tree8df5d7bae43d27cca2e60625610c4821139c5a50 /PC/config.c
parent7053b8a42219f7829dab3ec088b1eaa1547edb07 (diff)
downloadcpython-a8ee4c31bff512e1137656d6063e05a8ed204307.zip
cpython-a8ee4c31bff512e1137656d6063e05a8ed204307.tar.gz
cpython-a8ee4c31bff512e1137656d6063e05a8ed204307.tar.bz2
Mark Hammond:
* Base address for all extension modules updated. PC\dllbase_nt.txt also updated. Erroneous "libpath" directory removed for all projects. * winsound module moved from a builtin module to an extension module. This was done primarily to avoid Python16.dll needing to pull in winmm.dll. Really dumb test added for winsound - but if nothing else it ensures the module imports.
Diffstat (limited to 'PC/config.c')
-rw-r--r--PC/config.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/PC/config.c b/PC/config.c
index cd17857..0295c1f 100644
--- a/PC/config.c
+++ b/PC/config.c
@@ -61,7 +61,6 @@ extern void initcPickle();
extern void initpcre();
#ifdef WIN32
extern void initmsvcrt();
-extern void initwinsound();
extern void init_locale();
#endif
extern void init_codecs();
@@ -102,7 +101,6 @@ struct _inittab _PyImport_Inittab[] = {
{"pcre", initpcre},
#ifdef WIN32
{"msvcrt", initmsvcrt},
- {"winsound", initwinsound},
{"_locale", init_locale},
#endif