structure.h
00001
00002
00003
00004
00005
00006
00007
00008 #ifndef _STRUCTURE_H
00009 #define _STRUCTURE_H
00010
00011
00012
00013
00014
00015 #define ASN1_PRINT_NAME 1
00016 #define ASN1_PRINT_NAME_TYPE 2
00017 #define ASN1_PRINT_NAME_TYPE_VALUE 3
00018 #define ASN1_PRINT_ALL 4
00019
00020
00021 asn1_retCode _asn1_create_static_structure(node_asn *pointer,
00022 char* output_file_name,char *vector_name);
00023
00024 node_asn* _asn1_copy_structure3(node_asn *source_node);
00025
00026 node_asn* _asn1_copy_structure2(node_asn *root,const char *source_name);
00027
00028 node_asn * _asn1_add_node_only(unsigned int type);
00029
00030 node_asn * _asn1_find_left(node_asn *node);
00031
00032 #endif
00033