SIM-115: update simulator to use latest E2SM KPM version 3
[sim/e2-interface.git] / e2sim / asn1c / aper_decoder.h
1 /*-
2  * Copyright (c) 2005-2017 Lev Walkin <vlm@lionet.info>. All rights reserved.
3  * Redistribution and modifications are permitted subject to BSD license.
4  */
5 #ifndef _APER_DECODER_H_
6 #define _APER_DECODER_H_
7
8 #include <asn_application.h>
9 #include <aper_support.h>
10
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
14
15 struct asn_TYPE_descriptor_s;   /* Forward declaration */
16
17 /*
18  * Aligned PER decoder of a "complete encoding" as per X.691#10.1.
19  * On success, this call always returns (.consumed >= 1), in BITS, as per X.691#10.1.3.
20  */
21 asn_dec_rval_t aper_decode_complete(
22        const struct asn_codec_ctx_s *opt_codec_ctx,
23        const struct asn_TYPE_descriptor_s *type_descriptor,     /* Type to decode */
24        void **struct_ptr,       /* Pointer to a target structure's pointer */
25        const void *buffer,      /* Data to be decoded */
26        size_t size              /* Size of data buffer */
27                                                                         );
28
29 /*
30  * Aligned PER decoder of any ASN.1 type. May be invoked by the application.
31  * WARNING: This call returns the number of BITS read from the stream. Beware.
32  */
33 asn_dec_rval_t aper_decode(
34       const struct asn_codec_ctx_s *opt_codec_ctx,
35       const struct asn_TYPE_descriptor_s *type_descriptor,      /* Type to decode */
36       void **struct_ptr,        /* Pointer to a target structure's pointer */
37       const void *buffer,       /* Data to be decoded */
38       size_t size,              /* Size of data buffer */
39       int skip_bits,            /* Number of unused leading bits, 0..7 */
40       int unused_bits           /* Number of unused tailing bits, 0..7 */
41       );
42
43 #ifdef __cplusplus
44 }
45 #endif
46
47 #endif  /* _APER_DECODER_H_ */