I'm using a C library in my Swift 3 application. One of the structs defined in the library is defined thusly:
struct termRow {
void *bitmaps[BITMAP_PTRS];
int flags;
uint64_t chars[];
};
In my Swift code, when I reference a property of this termRow type, I have access to the bitmaps and flags, but the chars array is nowhere to be found! In Xcode, the autocomplete tells the story -- no chars value:
My assumption here is that Swift is unable to translate uint64_t arrays? If that is the case, what can I do to make it work in my Swift code, without screwing things up for the rest of the library?
