Lines Matching defs:sound
6 "PlaySound($module, /, sound, flags)\n"
11 " sound\n"
12 " The sound to play; a filename, data, or None.\n"
20 winsound_PlaySound_impl(PyObject *module, PyObject *sound, int flags);
26 static const char * const _keywords[] = {"sound", "flags", NULL};
29 PyObject *sound;
36 sound = args[0];
41 return_value = winsound_PlaySound_impl(module, sound, flags);
54 " Frequency of the sound in hertz.\n"
57 " How long the sound should play, in milliseconds.");