diff options
author | Guido van Rossum <guido@python.org> | 1999-02-04 22:40:42 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-02-04 22:40:42 (GMT) |
commit | e600578ac7e45ac4bd5ad07b50ec3fc0de322e1f (patch) | |
tree | dc07638caf207d966ce0c599bfb3075a97a40778 /PC/config.c | |
parent | f9ffb03c350d8e295c653bfa2f4f9a27fbc40c90 (diff) | |
download | cpython-e600578ac7e45ac4bd5ad07b50ec3fc0de322e1f.zip cpython-e600578ac7e45ac4bd5ad07b50ec3fc0de322e1f.tar.gz cpython-e600578ac7e45ac4bd5ad07b50ec3fc0de322e1f.tar.bz2 |
Add winsound -- by Toby Dickenson with permission.
Diffstat (limited to 'PC/config.c')
-rw-r--r-- | PC/config.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/PC/config.c b/PC/config.c index a15c1cf..4f6f560 100644 --- a/PC/config.c +++ b/PC/config.c @@ -63,6 +63,7 @@ extern void initcPickle(); extern void initpcre(); #ifdef WIN32 extern void initmsvcrt(); +extern void initwinsound(); extern void init_locale(); #endif @@ -106,6 +107,7 @@ struct _inittab _PyImport_Inittab[] = { {"pcre", initpcre}, #ifdef WIN32 {"msvcrt", initmsvcrt}, + {"winsound", initwinsound}, {"_locale", init_locale}, #endif |