Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2188bf0 commit 773feafCopy full SHA for 773feaf
1 file changed
PC/winsound.c
@@ -217,12 +217,13 @@ initwinsound(void)
217
{
218
OSVERSIONINFO version;
219
220
+ PyObject *dict;
221
PyObject *module = Py_InitModule3("winsound",
222
sound_methods,
223
sound_module_doc);
224
if (module == NULL)
225
return;
- PyObject *dict = PyModule_GetDict(module);
226
+ dict = PyModule_GetDict(module);
227
228
ADD_DEFINE(SND_ASYNC);
229
ADD_DEFINE(SND_NODEFAULT);
0 commit comments