aboutsummaryrefslogtreecommitdiffstats
path: root/skeletons/OPEN_TYPE.h
diff options
context:
space:
mode:
authorLev Walkin <vlm@lionet.info>2017-10-17 21:27:33 -0700
committerLev Walkin <vlm@lionet.info>2017-10-17 21:27:55 -0700
commit20696a4ff3781884f0ab2b146915dfa247a926cd (patch)
treedbbb70aa184fe0eb94f3dc46662d0273798cdfaa /skeletons/OPEN_TYPE.h
parent37231fb19578de38aa159b2b1fa911fc619e8c5d (diff)
constness fixes, round-trip and fuzz-testing for CHOICE
Diffstat (limited to 'skeletons/OPEN_TYPE.h')
-rw-r--r--skeletons/OPEN_TYPE.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/skeletons/OPEN_TYPE.h b/skeletons/OPEN_TYPE.h
index 617fb6a9..d0f02fd7 100644
--- a/skeletons/OPEN_TYPE.h
+++ b/skeletons/OPEN_TYPE.h
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2017 Lev Walkin <vlm@lionet.info>. All rights reserved.
+ * Copyright (c) 2017-2017 Lev Walkin <vlm@lionet.info>. All rights reserved.
* Redistribution and modifications are permitted subject to BSD license.
*/
#ifndef ASN_OPEN_TYPE_H
@@ -28,33 +28,33 @@ extern asn_TYPE_operation_t asn_OP_OPEN_TYPE;
* by the other members of the parent structure.
*/
asn_dec_rval_t OPEN_TYPE_ber_get(const asn_codec_ctx_t *opt_codec_ctx,
- asn_TYPE_descriptor_t *parent_type,
+ const asn_TYPE_descriptor_t *parent_type,
void *parent_structure,
- asn_TYPE_member_t *element, const void *ptr,
- size_t size);
+ const asn_TYPE_member_t *element,
+ const void *ptr, size_t size);
asn_dec_rval_t OPEN_TYPE_xer_get(const asn_codec_ctx_t *opt_codec_ctx,
- asn_TYPE_descriptor_t *parent_type,
+ const asn_TYPE_descriptor_t *parent_type,
void *parent_structure,
- asn_TYPE_member_t *element, const void *ptr,
- size_t size);
+ const asn_TYPE_member_t *element,
+ const void *ptr, size_t size);
asn_dec_rval_t OPEN_TYPE_oer_get(const asn_codec_ctx_t *opt_codec_ctx,
- asn_TYPE_descriptor_t *parent_type,
- void *parent_structure,
- asn_TYPE_member_t *element,
- const void *ptr, size_t size);
+ const asn_TYPE_descriptor_t *parent_type,
+ void *parent_structure,
+ asn_TYPE_member_t *element, const void *ptr,
+ size_t size);
asn_dec_rval_t OPEN_TYPE_uper_get(const asn_codec_ctx_t *opt_codec_ctx,
- asn_TYPE_descriptor_t *parent_type,
+ const asn_TYPE_descriptor_t *parent_type,
void *parent_structure,
- asn_TYPE_member_t *element,
+ const asn_TYPE_member_t *element,
asn_per_data_t *pd);
-asn_enc_rval_t OPEN_TYPE_encode_uper(asn_TYPE_descriptor_t *type_descriptor,
- const asn_per_constraints_t *constraints,
- void *struct_ptr,
- asn_per_outp_t *per_output);
+asn_enc_rval_t OPEN_TYPE_encode_uper(
+ const asn_TYPE_descriptor_t *type_descriptor,
+ const asn_per_constraints_t *constraints, const void *struct_ptr,
+ asn_per_outp_t *per_output);
#ifdef __cplusplus
}