asn1c/skeletons/constr_SEQUENCE.h

61 lines
1.5 KiB
C
Raw Normal View History

2004-06-03 03:38:44 +00:00
/*-
* Copyright (c) 2003, 2004 Lev Walkin <vlm@lionet.info>. All rights reserved.
* Redistribution and modifications are permitted subject to BSD license.
*/
#ifndef _CONSTR_SEQUENCE_H_
#define _CONSTR_SEQUENCE_H_
2004-09-24 21:00:50 +00:00
#include <asn_application.h>
2004-06-03 03:38:44 +00:00
2005-07-24 09:03:44 +00:00
#ifdef __cplusplus
extern "C" {
#endif
typedef const struct asn_SEQUENCE_specifics_s {
2004-06-03 03:38:44 +00:00
/*
* Target structure description.
*/
int struct_size; /* Size of the target structure. */
2004-09-29 13:26:15 +00:00
int ctx_offset; /* Offset of the asn_struct_ctx_t member */
2004-06-03 03:38:44 +00:00
2004-06-06 07:20:02 +00:00
/*
* Tags to members mapping table (sorted).
*/
const asn_TYPE_tag2member_t *tag2el;
2004-06-06 07:20:02 +00:00
int tag2el_count;
2005-11-26 11:25:14 +00:00
/*
* Optional members of the extensions root (roms) or additions (aoms).
* Meaningful for PER.
*/
const int *oms; /* Optional MemberS */
2005-11-26 11:25:14 +00:00
int roms_count; /* Root optional members count */
int aoms_count; /* Additions optional members count */
2004-06-03 03:38:44 +00:00
/*
* Description of an extensions group.
*/
2005-11-26 11:25:14 +00:00
int ext_after; /* Extensions start after this member */
int ext_before; /* Extensions stop before this member */
2004-09-29 13:26:15 +00:00
} asn_SEQUENCE_specifics_t;
2004-06-03 03:38:44 +00:00
/*
* A set specialized functions dealing with the SEQUENCE type.
*/
2004-09-22 16:06:28 +00:00
asn_struct_free_f SEQUENCE_free;
asn_struct_print_f SEQUENCE_print;
2004-06-03 03:38:44 +00:00
asn_constr_check_f SEQUENCE_constraint;
ber_type_decoder_f SEQUENCE_decode_ber;
der_type_encoder_f SEQUENCE_encode_der;
2004-10-23 13:27:30 +00:00
xer_type_decoder_f SEQUENCE_decode_xer;
2004-09-22 16:06:28 +00:00
xer_type_encoder_f SEQUENCE_encode_xer;
2005-11-26 11:25:14 +00:00
per_type_decoder_f SEQUENCE_decode_uper;
2006-08-18 01:34:18 +00:00
per_type_encoder_f SEQUENCE_encode_uper;
2004-06-03 03:38:44 +00:00
2005-07-24 09:03:44 +00:00
#ifdef __cplusplus
}
#endif
2004-06-03 03:38:44 +00:00
#endif /* _CONSTR_SEQUENCE_H_ */