A byte buffer allocated by python.
| 22 | LIB: CDLL = None |
| 23 | |
| 24 | class FfiByteBuffer(Structure): |
| 25 | """A byte buffer allocated by python.""" |
| 26 | _fields_ = [ |
| 27 | ("length", c_int64), |
| 28 | ("data", POINTER(c_ubyte)), |
| 29 | ] |
| 30 | |
| 31 | |
| 32 | class FfiError(Structure): |
no outgoing calls
no test coverage detected