event.h

来自「包括EPA协议栈」· C头文件 代码 · 共 25 行

H
25
字号
#ifndef _EVENT_H
#define _EVENT_H

#include "global.h"

void Event_Noti_Output(uint16 dst_app, uint16 src_app, uint16 src_obj, uint16 event_num, OctetString data, uint16 len, uint32 dst_ip);
void Event_Noti_Input(PSock psock, uint8 com_type, uint16 msg_id);

void Ack_Noti_Output(uint16 dst_app, uint16 dst_obj, uint16 event_num, uint32 dst_ip);
void Ack_Noti_Pos_Output(uint16 dst_app, uint16 msg_id, uint16 dst_port, uint32 dst_ip);
void Ack_Noti_Neg_Output(uint16 dst_app, uint8 err_class, uint8 err_code, uint8 add_code, uint16 msgid, uint16 dst_port, uint32 dst_ip);

void Ack_Noti_Input(PSock psock, uint8 com_type, uint16 msg_id);
void Ack_Noti_Pos_Input(PSock psock, uint8 com_type, uint16 msg_id);
void Ack_Noti_Neg_Input(PSock psock, uint8 com_type, uint16 msg_id);

void Alter_Monitor_Output(uint16 dst_app, uint16 dst_obj, boolean benabled, uint32 dst_ip);
void Alter_Monitor_Pos_Output(uint16 dst_app, uint16 msg_id, uint16 dst_port, uint32 dst_ip);
void Alter_Monitor_Neg_Output(uint16 dst_app, uint8 err_class, uint8 err_code, uint8 add_code, uint16 msg_id, uint16 dst_port, uint32 dst_ip);

void Alter_Monitor_Input(PSock psock, uint8 com_type, uint16 msg_id);
void Alter_Monitor_Pos_Input(PSock psock, uint8 com_type, uint16 msg_id);
void Alter_Monitor_Neg_Input(PSock psock, uint8 com_type, uint16 msg_id);

#endif	// _EVENT_H

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?