mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Add winsound -- by Toby Dickenson with permission.
This commit is contained in:
parent
f9ffb03c35
commit
e600578ac7
2 changed files with 130 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue