From e600578ac7e45ac4bd5ad07b50ec3fc0de322e1f Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 4 Feb 1999 22:40:42 +0000 Subject: Add winsound -- by Toby Dickenson with permission. --- PC/config.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'PC/config.c') diff --git a/PC/config.c b/PC/config.c index a15c1cfa9b..4f6f560896 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 -- cgit v1.2.1