blob: 5c1e5e41b885bf0c09df3e1789a66028e88aebb4 [file] [log] [blame]
Lev Walkinf15320b2004-06-03 03:38:44 +00001/*-
2 * Copyright (c) 2004 Lev Walkin <vlm@lionet.info>. All rights reserved.
3 * Redistribution and modifications are permitted subject to BSD license.
4 */
5/*
6 * This type differs from the standard INTEGER in that it is modelled using
7 * the fixed machine type (long, int, short), so it can hold only values of
8 * limited length. There is no type (i.e., NativeInteger_t, any integer type
9 * will do).
10 * This type may be used when integer range is limited by subtype constraints.
11 */
12#ifndef _NativeInteger_H_
13#define _NativeInteger_H_
14
Lev Walkin11c3e172004-09-24 21:00:50 +000015#include <asn_application.h>
Lev Walkinf15320b2004-06-03 03:38:44 +000016
17extern asn1_TYPE_descriptor_t asn1_DEF_NativeInteger;
18
Lev Walkina9cc46e2004-09-22 16:06:28 +000019asn_struct_free_f NativeInteger_free;
20asn_struct_print_f NativeInteger_print;
Lev Walkinf15320b2004-06-03 03:38:44 +000021ber_type_decoder_f NativeInteger_decode_ber;
22der_type_encoder_f NativeInteger_encode_der;
Lev Walkina9cc46e2004-09-22 16:06:28 +000023xer_type_encoder_f NativeInteger_encode_xer;
Lev Walkinf15320b2004-06-03 03:38:44 +000024
25#endif /* _NativeInteger_H_ */