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#

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;
};
}