Hi, I am trying to access to members of a structure 'imported' via ccall and where Clang.jl declared the types as being
bitstype int(WORD_SIZE/8)*sizeof(Cdouble)*2 Array_2_Cdouble bitstype int(WORD_SIZE/8)*sizeof(Uint8)*80 Array_80_Uint8 But I now am incapable of accessing their contents. Below is an example of what I tried (also tried several other variations of this) julia> typeof(hdr.title) Array_80_Uint8 julia> typeof(hdr.inc) Array_2_Cdouble julia> hdr.inc[1] ERROR: no method getindex(Array_2_Cdouble, Int64) How can access those guys? Thanks
