blob: 4de0d66a02cc267db14a36daf466ba6bf1933ed5 [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
Lev Walkin5e033762004-09-29 13:26:15 +000017extern asn_TYPE_descriptor_t asn_DEF_NativeInteger;
Lev Walkinf15320b2004-06-03 03:38:44 +000018
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_ */