asn1c/skeletons/NativeInteger.h

45 lines
1.4 KiB
C
Raw Normal View History

2004-06-03 03:38:44 +00:00
/*-
* Copyright (c) 2004 Lev Walkin <vlm@lionet.info>. All rights reserved.
* Redistribution and modifications are permitted subject to BSD license.
*/
/*
* This type differs from the standard INTEGER in that it is modelled using
* the fixed machine type (long, int, short), so it can hold only values of
* limited length. There is no type (i.e., NativeInteger_t, any integer type
* will do).
* This type may be used when integer range is limited by subtype constraints.
*/
#ifndef _NativeInteger_H_
#define _NativeInteger_H_
2004-09-24 21:00:50 +00:00
#include <asn_application.h>
2005-02-25 12:10:27 +00:00
#include <INTEGER.h>
2004-06-03 03:38:44 +00:00
2005-07-24 09:03:44 +00:00
#ifdef __cplusplus
extern "C" {
#endif
2004-09-29 13:26:15 +00:00
extern asn_TYPE_descriptor_t asn_DEF_NativeInteger;
extern asn_TYPE_operation_t asn_OP_NativeInteger;
2004-06-03 03:38:44 +00:00
2004-09-22 16:06:28 +00:00
asn_struct_free_f NativeInteger_free;
asn_struct_print_f NativeInteger_print;
2017-08-10 09:14:59 +00:00
asn_struct_compare_f NativeInteger_compare;
2004-06-03 03:38:44 +00:00
ber_type_decoder_f NativeInteger_decode_ber;
der_type_encoder_f NativeInteger_encode_der;
2004-10-21 14:13:48 +00:00
xer_type_decoder_f NativeInteger_decode_xer;
2004-09-22 16:06:28 +00:00
xer_type_encoder_f NativeInteger_encode_xer;
2017-07-23 21:45:57 +00:00
oer_type_decoder_f NativeInteger_decode_oer;
oer_type_encoder_f NativeInteger_encode_oer;
2005-11-26 11:25:14 +00:00
per_type_decoder_f NativeInteger_decode_uper;
2006-08-18 01:34:18 +00:00
per_type_encoder_f NativeInteger_encode_uper;
asn_random_fill_f NativeInteger_random_fill;
2004-06-03 03:38:44 +00:00
#define NativeInteger_constraint asn_generic_no_constraint
2005-07-24 09:03:44 +00:00
#ifdef __cplusplus
}
#endif
2004-06-03 03:38:44 +00:00
#endif /* _NativeInteger_H_ */