You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
590 B
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System.Threading;
using UPPLibs;
namespace CommService
{
/*
*类名称struRequestInQueue
*创建人:韩荣伟
*创建时间2010-10-30
*功能描述:请求结构类,用于请求与相应消息的匹配
*/
class struRequestInQueue
{
//帧信息
public struFrame frameInfo;
//帧字节串
public byte[] frameBytes;
//是否匹配
public bool bMatchOK;
//请求事件
public AutoResetEvent handleReqEvent;
//返回帧
public struFrame frameResp;
};
}