blob: 131e775926122ab539ccbaec39ed92db67fe6af0 [file] [log] [blame]
vlmfa67ddc2004-06-03 03:38:44 +00001/*-
2 * Copyright (c) 2003 Lev Walkin <vlm@lionet.info>. All rights reserved.
3 * Redistribution and modifications are permitted subject to BSD license.
4 */
vlmaf9cf132004-08-19 13:26:36 +00005#ifndef ASN_TYPE_NULL_H
6#define ASN_TYPE_NULL_H
vlmfa67ddc2004-06-03 03:38:44 +00007
vlmd1579582004-09-24 21:00:50 +00008#include <asn_application.h>
vlmfa67ddc2004-06-03 03:38:44 +00009
vlm3a417582005-07-24 09:03:44 +000010#ifdef __cplusplus
11extern "C" {
12#endif
13
vlmaf9cf132004-08-19 13:26:36 +000014/*
15 * The value of the NULL type is meaningless: see BOOLEAN if you want to
16 * carry true/false semantics.
17 */
18typedef int NULL_t;
vlmfa67ddc2004-06-03 03:38:44 +000019
vlmef6355b2004-09-29 13:26:15 +000020extern asn_TYPE_descriptor_t asn_DEF_NULL;
vlmfa67ddc2004-06-03 03:38:44 +000021
vlmfa67ddc2004-06-03 03:38:44 +000022asn_struct_print_f NULL_print;
vlm39ba4c42004-09-22 16:06:28 +000023der_type_encoder_f NULL_encode_der;
vlm4114a862004-10-22 08:20:32 +000024xer_type_decoder_f NULL_decode_xer;
vlm39ba4c42004-09-22 16:06:28 +000025xer_type_encoder_f NULL_encode_xer;
vlm337167e2005-11-26 11:25:14 +000026per_type_decoder_f NULL_decode_uper;
vlm18dd82c2006-08-18 01:34:18 +000027per_type_encoder_f NULL_encode_uper;
vlmfa67ddc2004-06-03 03:38:44 +000028
vlm3a417582005-07-24 09:03:44 +000029#ifdef __cplusplus
30}
31#endif
32
vlmaf9cf132004-08-19 13:26:36 +000033#endif /* NULL_H */