blob: b5acc71189eafda34b8a2f6f7b7537795407d11b [file] [log] [blame]
vlmfa67ddc2004-06-03 03:38:44 +00001/*-
vlm18dd82c2006-08-18 01:34:18 +00002 * Copyright (c) 2004, 2005, 2006 Lev Walkin <vlm@lionet.info>.
3 * All rights reserved.
vlmfa67ddc2004-06-03 03:38:44 +00004 * Redistribution and modifications are permitted subject to BSD license.
5 */
6/*
7 * This type differs from the standard ENUMERATED in that it is modelled using
8 * the fixed machine type (long, int, short), so it can hold only values of
9 * limited length. There is no type (i.e., NativeEnumerated_t, any integer type
10 * will do).
11 * This type may be used when integer range is limited by subtype constraints.
12 */
13#ifndef _NativeEnumerated_H_
14#define _NativeEnumerated_H_
15
16#include <NativeInteger.h>
17
vlm3a417582005-07-24 09:03:44 +000018#ifdef __cplusplus
19extern "C" {
20#endif
21
vlmef6355b2004-09-29 13:26:15 +000022extern asn_TYPE_descriptor_t asn_DEF_NativeEnumerated;
vlmfa67ddc2004-06-03 03:38:44 +000023
vlm75fddcc2005-03-29 17:19:53 +000024xer_type_encoder_f NativeEnumerated_encode_xer;
vlm337167e2005-11-26 11:25:14 +000025per_type_decoder_f NativeEnumerated_decode_uper;
vlm18dd82c2006-08-18 01:34:18 +000026per_type_encoder_f NativeEnumerated_encode_uper;
Sylvain Munautae6aea82010-06-14 23:31:04 +020027asn_struct_print_f NativeEnumerated_print;
vlm75fddcc2005-03-29 17:19:53 +000028
vlm3a417582005-07-24 09:03:44 +000029#ifdef __cplusplus
30}
31#endif
32
vlmfa67ddc2004-06-03 03:38:44 +000033#endif /* _NativeEnumerated_H_ */