Next: , Previous: C String, Up: C mappings


6.1.6 Mapping for arrays

GenoM IDL arrays map directly to C arrays. All array indices run from 0 to size-1.

For instance, the following IDL:

      typedef long array[4][16];

would map into

      typedef int32_t array[4][16];