blob: 68a81d9b03727c83400ac869241fe2e0a54d74ce [file] [log] [blame]
Harald Welte92c45f32010-06-12 18:59:38 +02001/*-
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 REAL in that it is modelled using
7 * the fixed machine type (double), so it can hold only values of
8 * limited precision. There is no explicit type (i.e., NativeReal_t).
Harald Welteec0e2172010-07-20 00:03:44 +02009 * Use of this type is normally enabled by -fnative-types.
Harald Welte92c45f32010-06-12 18:59:38 +020010 */
11#ifndef ASN_TYPE_NativeReal_H
12#define ASN_TYPE_NativeReal_H
13
14#include <asn_application.h>
15
16#ifdef __cplusplus
17extern "C" {
18#endif
19
20extern asn_TYPE_descriptor_t asn_DEF_NativeReal;
21
22asn_struct_free_f NativeReal_free;
23asn_struct_print_f NativeReal_print;
24ber_type_decoder_f NativeReal_decode_ber;
25der_type_encoder_f NativeReal_encode_der;
26xer_type_decoder_f NativeReal_decode_xer;
27xer_type_encoder_f NativeReal_encode_xer;
Harald Welteec0e2172010-07-20 00:03:44 +020028per_type_decoder_f NativeReal_decode_uper;
29per_type_encoder_f NativeReal_encode_uper;
Harald Welte92c45f32010-06-12 18:59:38 +020030
31#ifdef __cplusplus
32}
33#endif
34
35#endif /* ASN_TYPE_NativeReal_H */