-------------------------------------------------------------------------------------- Description: Returns all live AL resources as Python structure. Arguments: self - Python self reference (unused) args - Python call arguments (unused) Return value: Python dictionary describing live AL objects --------------------------------------------------------------------------------------
| 387 | // Python dictionary describing live AL objects |
| 388 | // -------------------------------------------------------------------------------------- |
| 389 | PyObject* PyGetLiveResources( PyObject* /*self*/, PyObject* /*args*/ ) |
| 390 | { |
| 391 | result = PyDict_New(); |
| 392 | DescribeDeviceResources( GetDesc ); |
| 393 | return result; |
| 394 | } |
| 395 | } |
| 396 | |
| 397 | MAP_FUNCTION( |
nothing calls this directly
no test coverage detected