I think this should work:extern extern(C) int[1] tab; Then if you want to access the elements, use the tab.ptr[elem] If it's a global variable, tack on __gshared. -Steve
I've already tried this and works (64-bit at least on linux). But is it portable?
No other way that allow to access the `tab` directly (without .ptr proxy) ?