(
res: Any,
struct_map: StructMap,
fn: "ctypes._NamedFuncPointer",
)
| 232 | |
| 233 | |
| 234 | def _decode_response( |
| 235 | res: Any, |
| 236 | struct_map: StructMap, |
| 237 | fn: "ctypes._NamedFuncPointer", |
| 238 | ) -> Any: |
| 239 | return _decode_type(res, struct_map, fn.restype) # type: ignore |
| 240 | |
| 241 | |
| 242 | def _process_args( |
no test coverage detected