blob: 8ddd0e3ba247a1b4fee3ed2a2eafcbdb1ba1e9d7 [file] [log] [blame]
Harald Welted523a692015-08-30 23:11:19 +02001/*-
2 * Copyright (c) 2003 Lev Walkin <vlm@lionet.info>. All rights reserved.
3 * Redistribution and modifications are permitted subject to BSD license.
4 */
5#ifndef _CONSTR_SET_OF_H_
6#define _CONSTR_SET_OF_H_
7
8#include <asn_application.h>
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
14typedef const struct asn_SET_OF_specifics_s {
15 /*
16 * Target structure description.
17 */
18 int struct_size; /* Size of the target structure. */
19 int ctx_offset; /* Offset of the asn_struct_ctx_t member */
20
21 /* XER-specific stuff */
22 int as_XMLValueList; /* The member type must be encoded like this */
23} asn_SET_OF_specifics_t;
24
25/*
26 * A set specialized functions dealing with the SET OF type.
27 */
28asn_struct_free_f SET_OF_free;
29asn_struct_print_f SET_OF_print;
30asn_constr_check_f SET_OF_constraint;
31ber_type_decoder_f SET_OF_decode_ber;
32der_type_encoder_f SET_OF_encode_der;
33xer_type_decoder_f SET_OF_decode_xer;
34xer_type_encoder_f SET_OF_encode_xer;
35per_type_decoder_f SET_OF_decode_uper;
36per_type_encoder_f SET_OF_encode_uper;
37per_type_decoder_f SET_OF_decode_aper;
38per_type_encoder_f SET_OF_encode_aper;
39
40#ifdef __cplusplus
41}
42#endif
43
44#endif /* _CONSTR_SET_OF_H_ */