mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-28 14:26:20 +00:00
Added python_api_cons_bad_cmd_usage
This commit is contained in:
@@ -74,6 +74,17 @@ python_api_cons_show_themed(PyObject *self, PyObject *args)
|
|||||||
return Py_BuildValue("");
|
return Py_BuildValue("");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static PyObject*
|
||||||
|
python_api_cons_bad_cmd_usage(PyObject *self, PyObject *args)
|
||||||
|
{
|
||||||
|
const char *cmd = NULL;
|
||||||
|
if (!PyArg_ParseTuple(args, "s", &cmd)) {
|
||||||
|
return Py_BuildValue("");
|
||||||
|
}
|
||||||
|
api_cons_bad_cmd_usage(cmd);
|
||||||
|
return Py_BuildValue("");
|
||||||
|
}
|
||||||
|
|
||||||
static PyObject*
|
static PyObject*
|
||||||
python_api_register_command(PyObject *self, PyObject *args)
|
python_api_register_command(PyObject *self, PyObject *args)
|
||||||
{
|
{
|
||||||
@@ -424,6 +435,7 @@ static PyMethodDef apiMethods[] = {
|
|||||||
{ "cons_alert", python_api_cons_alert, METH_NOARGS, "Highlight the console window in the status bar." },
|
{ "cons_alert", python_api_cons_alert, METH_NOARGS, "Highlight the console window in the status bar." },
|
||||||
{ "cons_show", python_api_cons_show, METH_VARARGS, "Print a line to the console." },
|
{ "cons_show", python_api_cons_show, METH_VARARGS, "Print a line to the console." },
|
||||||
{ "cons_show_themed", python_api_cons_show_themed, METH_VARARGS, "Print a themed line to the console" },
|
{ "cons_show_themed", python_api_cons_show_themed, METH_VARARGS, "Print a themed line to the console" },
|
||||||
|
{ "cons_bad_cmd_usage", python_api_cons_bad_cmd_usage, METH_VARARGS, "Show invalid command message in console" },
|
||||||
{ "register_command", python_api_register_command, METH_VARARGS, "Register a command." },
|
{ "register_command", python_api_register_command, METH_VARARGS, "Register a command." },
|
||||||
{ "register_timed", python_api_register_timed, METH_VARARGS, "Register a timed function." },
|
{ "register_timed", python_api_register_timed, METH_VARARGS, "Register a timed function." },
|
||||||
{ "register_ac", python_api_register_ac, METH_VARARGS, "Register an autocompleter." },
|
{ "register_ac", python_api_register_ac, METH_VARARGS, "Register an autocompleter." },
|
||||||
|
|||||||
Reference in New Issue
Block a user