📄 cbcprocessstruct.h
字号:
#include "..\sys\Include.h"
/* Write_Replace进程数据结构 */
typedef struct
{
CBEMESSAGE_t s_CBCMessage;
unsigned char cResponseType; /* 响应消息类型,区分WRITE和RElACE*/
unsigned char cNoOfResponseReq; /* 需要收到的响应次数 */
int iTimerId; /* 暂存回复响应定时器ID */
int iLifeTimerId; /* 结束定时器 */
NOOFBROADCASTSCOMLLIST_i s_NoofBroadcastComlList;
CELLLIST_i s_ResponseCellList;
int iScheduleTimerId; /* 预约定时器 */
}WRITEREPLACE_PROCESS_DATA_STRUCT;
/* Kill_Message进程数据结构 */
typedef struct
{
CBEMESSAGE_t s_CBCMessage;
unsigned char cResponseType; /* 响应消息类型,KILL */
unsigned char cNoOfResponseReq; /* 需要收到的响应次数 */
int iTimerId; /* 暂存回复响应定时器ID */
int iLifeTimerId; /* 结束定时器 */
NOOFBROADCASTSCOMLLIST_i s_NoofBroadcastComlList;
CELLLIST_i s_FailureList; /* 此时只填失败列表 */
}KILL_PROCESS_DATA_STRUCT;
/* Status_CBCH_Query进程数据结构 */
typedef struct
{
CBEMESSAGE_t s_CBCMessage;
unsigned char cNoOfResponseReq; /* 需要收到的响应次数 */
int iTimerId; /* 暂存回复响应定时器ID */
CELLLIST_i s_ResponseCellList; /* 响应列表填信道负荷 */
}SCQ_PROCESS_DATA_STRUCT;
/* Status_Message_Query进程数据结构 */
typedef struct
{
CBEMESSAGE_t s_CBCMessage;
unsigned char cNoOfResponseReq; /* 需要收到的响应次数 */
int iTimerId; /* 暂存回复响应定时器ID */
CELLLIST_i s_ResponseCellList; /* 响应列表填完成次数 */
}SMQ_PROCESS_DATA_STRUCT;
/* SET_DRX进程数据结构 */
typedef struct
{
CBEMESSAGE_t s_CBCMessage;
unsigned char cNoOfResponseReq; /* 需要收到的响应次数 */
int iTimerId; /* 暂存回复响应定时器ID */
CELLLIST_i s_ResponseCellList; /* 响应列表填完成次数 */
}SETDRX_PROCESS_DATA_STRUCT;
/* Reset进程数据结构 */
typedef struct
{
CBEMESSAGE_t s_CBCMessage;
unsigned char cNoOfResponseReq; /* 需要收到的响应次数 */
int iTimerId; /* 暂存回复响应定时器ID */
CELLLIST_i s_ResponseCellList; /* 响应列表填完成次数 */
}RESET_PROCESS_DATA_STRUCT;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -