2 * Run-time support for Information Object Classes.
3 * Copyright (c) 2017 Lev Walkin <vlm@lionet.info>. All rights reserved.
4 * Redistribution and modifications are permitted subject to BSD license.
9 #include <asn_system.h> /* Platform-specific types */
15 struct asn_TYPE_descriptor_s;
16 struct asn_ioc_cell_s;
21 typedef struct asn_ioc_set_s {
24 const struct asn_ioc_cell_s *rows;
28 typedef struct asn_ioc_cell_s {
29 const char *field_name; /* Is equal to corresponding column_name */
36 struct asn_TYPE_descriptor_s *type_descriptor;
37 const void *value_sptr;
41 unsigned choice_position;
51 #endif /* ASN_IOC_H */