|
26平台中加增值服务,有几个问题想请教大家
1,if((strncmp(gHomePLMNNum, "46000[/COLOR]",5)==0)
||(strncmp(gHomePLMNNum, "46002",5)==0))
MSGClubNetwork=MSG_CLUB_CT;
else if(strncmp(gHomePLMNNum, "46001",5)==0)
MSGClubNetwork=MSG_CLUB_CU;
else
MSGClubNetwork=MSG_CLUB_NETWORK_TOTAL;
这里是不是在判断手机入的网络是移动的还是连通的 ,还是说手机连接的网络是哪个频段的?
如果是第一中情况,请高手指教 哪个是联通哪个是移动
2 typedef struct
{
U16 stringID;
U8 serverType;
U8 agentID;
U8 strInput_codeCU;
msg_club_long_code_struct codeDY;
msg_club_long_code_struct codeDB;
msg_club_long_code_struct codeZF;
msg_club_short_code_struct codeTD;
// msg_club_help_struct helpID;
} msg_club_entry_dy_db_zf_struct;
typedef struct
{
U16 codeType;
U8 codeNum[MSG_CLUB_LONG_CODE_LENGTH];
}msg_club_long_code_struct;
这个结构中每个变量的意思是什么,
3,typedef enum
{
MSG_CLUB_SERVICE_SUBSCRIBE,
MSG_CLUB_SERVICE_ORDER,
MSG_CLUB_SERVICE_EXPLAIN,
MSG_CLUB_SERVICE_CANCEL,
MSG_CLUB_SERVICE_MORE
}msg_club_service_enum;
这个枚举和2中的codeDY,codeDB等是对应的吗?
4,typedef struct
{
U8 serverIndex;
U8 codeIndex;
msg_club_service_code_struct serverDY[MSG_CLUB_NETWORK_TOTAL];
msg_club_service_code_struct serverDB[MSG_CLUB_NETWORK_TOTAL];
msg_club_service_code_struct serverZF[MSG_CLUB_NETWORK_TOTAL];
msg_club_service_code_struct serverTD[MSG_CLUB_NETWORK_TOTAL];
} msg_club_service_num_struct;
const msg_club_service_num_struct NumService[]
这个NumService好象是短信的号码,但是具体的我没有怎么看明白
以上的几个问题麻烦高手解疑! 谢谢先! |
|