asn1c/skeletons/REAL.h

50 lines
1.3 KiB
C
Raw Normal View History

/*-
* Copyright (c) 2004 Lev Walkin <vlm@lionet.info>. All rights reserved.
* Redistribution and modifications are permitted subject to BSD license.
*/
#ifndef ASN_TYPE_REAL_H
#define ASN_TYPE_REAL_H
2004-09-24 21:00:50 +00:00
#include <asn_application.h>
2004-10-21 11:22:12 +00:00
#include <asn_codecs_prim.h>
2005-07-24 09:03:44 +00:00
#ifdef __cplusplus
extern "C" {
#endif
typedef ASN__PRIMITIVE_TYPE_t REAL_t;
2004-09-29 13:26:15 +00:00
extern asn_TYPE_descriptor_t asn_DEF_REAL;
asn_struct_print_f REAL_print;
2004-10-21 13:37:57 +00:00
xer_type_decoder_f REAL_decode_xer;
2004-09-22 16:06:28 +00:00
xer_type_encoder_f REAL_encode_xer;
2006-10-09 12:07:58 +00:00
per_type_decoder_f REAL_decode_uper;
per_type_encoder_f REAL_encode_uper;
#define REAL_free ASN__PRIMITIVE_TYPE_free,
#define REAL_constraint asn_generic_no_constraint
#define REAL_decode_ber ber_decode_primitive
#define REAL_encode_der der_encode_primitive
/***********************************
* Some handy conversion routines. *
***********************************/
2004-09-22 16:06:28 +00:00
ssize_t REAL__dump(double d, int canonical, asn_app_consume_bytes_f *cb, void *app_key);
/*
* Convert between native double type and REAL representation (DER).
* RETURN VALUES:
* 0: Value converted successfully
* -1: An error occured while converting the value: invalid format.
*/
2004-09-29 13:26:15 +00:00
int asn_REAL2double(const REAL_t *real_ptr, double *d);
int asn_double2REAL(REAL_t *real_ptr, double d);
2005-07-24 09:03:44 +00:00
#ifdef __cplusplus
}
#endif
#endif /* ASN_TYPE_REAL_H */