are forward-declaration-only structs supposed to b...
# kotlin-native
o
are forward-declaration-only structs supposed to be missing from the generated kotlin declarations? trying to call
archive_read_next_header(struct archive *, struct archive_entry **);
from libarchive, but it requires a double-pointer to
archive_entry
.
archive_entry
isn't generated for me to reference, it's only listed as
cnames.structs.archive_entry
, but I can't import even that. Am I missing something, or is adding an empty struct declaration to the
libarchive.def
the correct move here?