SKYENGINE API  参考手册返回目录  

 
int32 mr_platEx

(int32 code = 4011,
uint8* input,
int32 input_len,
uint8** output,
int32* output_len,
MR_PLAT_EX_CB* cb
)



Description
搜索电话本。
Parameters

Name Description
input T_MR_PHB_SEARCH_REQ数据结构指针
input_len T_MR_PHB_SEARCH_REQ数据结构大小
output T_MR_PHB_SEARCH_RSP数据结构指针
output_len T_MR_PHB_SEARCH_RSP数据结构大小
cb

Return Value

MR_PHB_NOT_READY        (4+MR_PLAT_VALUE_BASE)      //电话本初始化中         
MR_PHB_SUCCESS           (0+MR_PLAT_VALUE_BASE)      //搜索成功
MR_PHB_NOT_FOUND       (5+MR_PLAT_VALUE_BASE)      //2种情况,1:搜索参数为空;2:未找到

Remarks

T_MR_PHB_SEARCH_REQ数据结构:
typedef struct
{
    S8 pattern[MR_PHB_MAX_SEARCH_PATTERN];  /*搜索条件大端unicode*/
    U16 search_type;                  /*搜索类型,1:通过名称;2:通过号码*/
    U16 storage;                        /*不关心*/
}T_MR_PHB_SEARCH_REQ;

T_MR_PHB_SEARCH_RSP数据结构:
typedef struct
{
    U16 index;                   /*在列表中的位置,起始是 0*/
    U16 store_index;              /*在sim卡或者手机中物理的位置*/
    T_MR_PHB_ENTRY phb_entry; /*具体信息*/
}T_MR_PHB_SEARCH_RSP;
T_MR_PHB_ENTRY数据结构:
typedef struct
{
    S8 name[MR_PHB_MAX_NAME];
    S8 number[MR_PHB_MAX_NUMBER];
    S8 homeNumber[MR_PHB_MAX_NUMBER];
    S8 officeNumber[MR_PHB_MAX_NUMBER];
    S8 faxNumber[MR_PHB_MAX_NUMBER];
    S8 emailAddress[MR_PHB_MAX_NUMBER];
}T_MR_PHB_ENTRY;

电话本接口中对应的参数的定义:
#define MR_PHB_MAX_NAME     (36*2) //暂时定位24个字节,12个汉字.
#define MR_PHB_MAX_NUMBER    (48*2)//暂时定位可输入40个字节.40个数字
#define MR_PHB_MAX_SEARCH_PATTERN  (60*2)

Example

/*mrp code*/

#define SEEK_NAME  "seekPHB"
T_MR_PHB_SEARCH_REQ serReq = { 0 };
T_MR_PHB_SEARCH_RSP *serRsp = NULL;
int32 len;

serReq.search_type = 1;
str2wstr( (PCSTR)SEEK_NAME, (PWSTR)serReq.pattern,(Sint32)MR_PHB_MAX_SEARCH_PATTERN );
mrc_platEx( 4011, (uint8*)&serReq, sizeof ( T_MR_PHB_SEARCH_REQ ), (uint8**)&serRsp, &len, NULL) ;

See Also

 


Copyright ?2005-20010 SKY-MOBI

返回目录