Home
last modified time | relevance | path

Searched refs:jackclient_type (Results 1 – 1 of 1) sorted by relevance

/dports/audio/calf-lv2/calf-648f05e85287cf08af198bdd9e52baba95b502ec/bigbull/
H A Dcalfpytools.cpp44 static PyTypeObject jackclient_type = { variable
331 if (!PyArg_ParseTuple(args, "O!O:__init__", &jackclient_type, &client, &cobj)) in jackport_init()
583 jackclient_type.tp_new = PyType_GenericNew; in initcalfpytools()
584 jackclient_type.tp_flags = Py_TPFLAGS_DEFAULT; in initcalfpytools()
585 jackclient_type.tp_doc = "JACK client object"; in initcalfpytools()
586 jackclient_type.tp_methods = jackclient_methods; in initcalfpytools()
587 jackclient_type.tp_dealloc = (destructor)jackclient_dealloc; in initcalfpytools()
588 if (PyType_Ready(&jackclient_type) < 0) in initcalfpytools()
603 Py_INCREF(&jackclient_type); in initcalfpytools()
605 PyModule_AddObject(mod, "JackClient", (PyObject *)&jackclient_type); in initcalfpytools()