Next: C Union, Previous: C Array, Up: C mappings
GenoM IDL structures map directly onto C structs. Note that these structures may potentially include padding.
struct
For instance, the following IDL:
struct s { long a; long b; };
would map into
typedef struct { int32_t a; int32_t b; } s;