2015-05-13 03:21:21 -03:00
|
|
|
/*[clinic input]
|
|
|
|
preserve
|
|
|
|
[clinic start generated code]*/
|
|
|
|
|
|
|
|
PyDoc_STRVAR(winsound_PlaySound__doc__,
|
2016-09-06 18:32:43 -03:00
|
|
|
"PlaySound($module, /, sound, flags)\n"
|
2015-05-13 03:21:21 -03:00
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"A wrapper around the Windows PlaySound API.\n"
|
|
|
|
"\n"
|
|
|
|
" sound\n"
|
|
|
|
" The sound to play; a filename, data, or None.\n"
|
|
|
|
" flags\n"
|
|
|
|
" Flag values, ored together. See module documentation.");
|
|
|
|
|
|
|
|
#define WINSOUND_PLAYSOUND_METHODDEF \
|
2016-09-10 00:00:13 -03:00
|
|
|
{"PlaySound", (PyCFunction)winsound_PlaySound, METH_FASTCALL, winsound_PlaySound__doc__},
|
2015-05-13 03:21:21 -03:00
|
|
|
|
|
|
|
static PyObject *
|
2016-09-05 18:31:21 -03:00
|
|
|
winsound_PlaySound_impl(PyObject *module, PyObject *sound, int flags);
|
2015-05-13 03:21:21 -03:00
|
|
|
|
|
|
|
static PyObject *
|
2016-09-10 00:00:13 -03:00
|
|
|
winsound_PlaySound(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
|
2015-05-13 03:21:21 -03:00
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
2016-09-06 18:32:43 -03:00
|
|
|
static const char * const _keywords[] = {"sound", "flags", NULL};
|
|
|
|
static _PyArg_Parser _parser = {"Oi:PlaySound", _keywords, 0};
|
2016-09-05 18:31:21 -03:00
|
|
|
PyObject *sound;
|
2015-05-13 03:21:21 -03:00
|
|
|
int flags;
|
|
|
|
|
2016-09-10 00:00:13 -03:00
|
|
|
if (!_PyArg_ParseStack(args, nargs, kwnames, &_parser,
|
2016-06-09 10:16:06 -03:00
|
|
|
&sound, &flags)) {
|
2015-05-13 03:21:21 -03:00
|
|
|
goto exit;
|
2016-06-09 10:16:06 -03:00
|
|
|
}
|
2015-05-13 03:21:21 -03:00
|
|
|
return_value = winsound_PlaySound_impl(module, sound, flags);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyDoc_STRVAR(winsound_Beep__doc__,
|
2016-09-06 18:32:43 -03:00
|
|
|
"Beep($module, /, frequency, duration)\n"
|
2015-05-13 03:21:21 -03:00
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"A wrapper around the Windows Beep API.\n"
|
|
|
|
"\n"
|
|
|
|
" frequency\n"
|
|
|
|
" Frequency of the sound in hertz.\n"
|
|
|
|
" Must be in the range 37 through 32,767.\n"
|
|
|
|
" duration\n"
|
|
|
|
" How long the sound should play, in milliseconds.");
|
|
|
|
|
|
|
|
#define WINSOUND_BEEP_METHODDEF \
|
2016-09-10 00:00:13 -03:00
|
|
|
{"Beep", (PyCFunction)winsound_Beep, METH_FASTCALL, winsound_Beep__doc__},
|
2015-05-13 03:21:21 -03:00
|
|
|
|
|
|
|
static PyObject *
|
2016-07-07 11:35:15 -03:00
|
|
|
winsound_Beep_impl(PyObject *module, int frequency, int duration);
|
2015-05-13 03:21:21 -03:00
|
|
|
|
|
|
|
static PyObject *
|
2016-09-10 00:00:13 -03:00
|
|
|
winsound_Beep(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
|
2015-05-13 03:21:21 -03:00
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
2016-09-06 18:32:43 -03:00
|
|
|
static const char * const _keywords[] = {"frequency", "duration", NULL};
|
|
|
|
static _PyArg_Parser _parser = {"ii:Beep", _keywords, 0};
|
2015-05-13 03:21:21 -03:00
|
|
|
int frequency;
|
|
|
|
int duration;
|
|
|
|
|
2016-09-10 00:00:13 -03:00
|
|
|
if (!_PyArg_ParseStack(args, nargs, kwnames, &_parser,
|
2016-06-09 10:16:06 -03:00
|
|
|
&frequency, &duration)) {
|
2015-05-13 03:21:21 -03:00
|
|
|
goto exit;
|
2016-06-09 10:16:06 -03:00
|
|
|
}
|
2015-05-13 03:21:21 -03:00
|
|
|
return_value = winsound_Beep_impl(module, frequency, duration);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyDoc_STRVAR(winsound_MessageBeep__doc__,
|
2016-09-06 18:32:43 -03:00
|
|
|
"MessageBeep($module, /, type=MB_OK)\n"
|
2015-05-13 03:21:21 -03:00
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Call Windows MessageBeep(x).\n"
|
|
|
|
"\n"
|
|
|
|
"x defaults to MB_OK.");
|
|
|
|
|
|
|
|
#define WINSOUND_MESSAGEBEEP_METHODDEF \
|
2016-09-10 00:00:13 -03:00
|
|
|
{"MessageBeep", (PyCFunction)winsound_MessageBeep, METH_FASTCALL, winsound_MessageBeep__doc__},
|
2015-05-13 03:21:21 -03:00
|
|
|
|
|
|
|
static PyObject *
|
2016-09-06 18:32:43 -03:00
|
|
|
winsound_MessageBeep_impl(PyObject *module, int type);
|
2015-05-13 03:21:21 -03:00
|
|
|
|
|
|
|
static PyObject *
|
2016-09-10 00:00:13 -03:00
|
|
|
winsound_MessageBeep(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
|
2015-05-13 03:21:21 -03:00
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
2016-09-06 18:32:43 -03:00
|
|
|
static const char * const _keywords[] = {"type", NULL};
|
|
|
|
static _PyArg_Parser _parser = {"|i:MessageBeep", _keywords, 0};
|
|
|
|
int type = MB_OK;
|
2015-05-13 03:21:21 -03:00
|
|
|
|
2016-09-10 00:00:13 -03:00
|
|
|
if (!_PyArg_ParseStack(args, nargs, kwnames, &_parser,
|
2016-09-06 18:32:43 -03:00
|
|
|
&type)) {
|
2015-05-13 03:21:21 -03:00
|
|
|
goto exit;
|
2016-06-09 10:16:06 -03:00
|
|
|
}
|
2016-09-06 18:32:43 -03:00
|
|
|
return_value = winsound_MessageBeep_impl(module, type);
|
2015-05-13 03:21:21 -03:00
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
2016-09-10 00:00:13 -03:00
|
|
|
/*[clinic end generated code: output=bfe16b2b8b490cb1 input=a9049054013a1b77]*/
|