Next: , Previous: C Array, Up: C mappings


6.1.7 Mapping for structure types

GenoM IDL structures map directly onto C structs. Note that these structures may potentially include padding.

For instance, the following IDL:

      struct s {
         long a;
         long b;
      };

would map into

      typedef struct {
         int32_t a;
         int32_t b;
      } s;