Open
Description
The underlying type of CFStringRef
is struct __CFString
, and that's what ffigen is using as-is. Since it starts with _
, it's private to the generated file, so it can't be used, even though it's part of the return type of some things it generates. E.g.:
ffi.Pointer<__CFString> get kCVPixelBufferPixelFormatTypeKey => _kCVPixelBufferPixelFormatTypeKey.value
Maybe that should be automatically changed to CFStringRef
by the generator?
Metadata
Assignees
Type
Projects
Status
Todo