asn1c/skeletons/NativeEnumerated.h

33 lines
897 B
C
Raw Normal View History

2004-06-03 03:38:44 +00:00
/*-
2006-08-18 01:34:18 +00:00
* Copyright (c) 2004, 2005, 2006 Lev Walkin <vlm@lionet.info>.
* All rights reserved.
2004-06-03 03:38:44 +00:00
* Redistribution and modifications are permitted subject to BSD license.
*/
/*
* This type differs from the standard ENUMERATED 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., NativeEnumerated_t, any integer type
* will do).
* This type may be used when integer range is limited by subtype constraints.
*/
#ifndef _NativeEnumerated_H_
#define _NativeEnumerated_H_
#include <NativeInteger.h>
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_NativeEnumerated;
2004-06-03 03:38:44 +00:00
xer_type_encoder_f NativeEnumerated_encode_xer;
2005-11-26 11:25:14 +00:00
per_type_decoder_f NativeEnumerated_decode_uper;
2006-08-18 01:34:18 +00:00
per_type_encoder_f NativeEnumerated_encode_uper;
2005-07-24 09:03:44 +00:00
#ifdef __cplusplus
}
#endif
2004-06-03 03:38:44 +00:00
#endif /* _NativeEnumerated_H_ */