00001 #ifndef _ASM_MESSAGE_PARSER_H_
00002 #define _ASM_MESSAGE_PARSER_H_
00003 #include "../include/mc_error.h"
00004 #include "../include/xml_parser.h"
00005 #include "asm_node.h"
00006 #ifndef _WIN32
00007 #include "config.h"
00008 #else
00009 #include "../winconfig.h"
00010 #endif
00011
00012 #ifdef MC_SECURITY
00013
00014 error_code_t
00015 asm_message_parse(asm_node_p asm_node);
00016
00017 error_code_t
00018 asm_message_parse__encryption_data
00019 (
00020 asm_node_p asm_node,
00021 xml_parser_p xml_parser
00022 );
00023
00024 error_code_t
00025 asm_message_parse__p(asm_node_p asm_node, xml_parser_p xml_parser);
00026
00027 error_code_t
00028 asm_message_parse__g(asm_node_p asm_node, xml_parser_p xml_parser);
00029
00030 error_code_t
00031 asm_message_parse__y(asm_node_p asm_node, xml_parser_p xml_parser);
00032
00033 #endif
00034 #endif