blob: 5792beed2939e17db628b3d75ac0500a3317c217 [file] [log] [blame]
vlmfa67ddc2004-06-03 03:38:44 +00001/*-
vlm75fddcc2005-03-29 17:19:53 +00002 * Copyright (c) 2004, 2005 Lev Walkin <vlm@lionet.info>. All rights reserved.
vlmfa67ddc2004-06-03 03:38:44 +00003 * Redistribution and modifications are permitted subject to BSD license.
4 */
5/*
6 * This type differs from the standard ENUMERATED 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., NativeEnumerated_t, any integer type
9 * will do).
10 * This type may be used when integer range is limited by subtype constraints.
11 */
12#ifndef _NativeEnumerated_H_
13#define _NativeEnumerated_H_
14
15#include <NativeInteger.h>
16
vlm3a417582005-07-24 09:03:44 +000017#ifdef __cplusplus
18extern "C" {
19#endif
20
vlmef6355b2004-09-29 13:26:15 +000021extern asn_TYPE_descriptor_t asn_DEF_NativeEnumerated;
vlmfa67ddc2004-06-03 03:38:44 +000022
vlm75fddcc2005-03-29 17:19:53 +000023xer_type_encoder_f NativeEnumerated_encode_xer;
vlm337167e2005-11-26 11:25:14 +000024per_type_decoder_f NativeEnumerated_decode_uper;
vlm75fddcc2005-03-29 17:19:53 +000025
vlm3a417582005-07-24 09:03:44 +000026#ifdef __cplusplus
27}
28#endif
29
vlmfa67ddc2004-06-03 03:38:44 +000030#endif /* _NativeEnumerated_H_ */