| 88 | } |
| 89 | |
| 90 | class _InternalStruct(ctypes.Structure): |
| 91 | _fields_ = [ |
| 92 | ( |
| 93 | name, |
| 94 | cls._get_type(get_mapped(typ), name), |
| 95 | ) |
| 96 | for name, typ in cls._hints.items() # fmt: off |
| 97 | ] |
| 98 | |
| 99 | cls._internal_struct = _InternalStruct |
| 100 |
nothing calls this directly
no test coverage detected