SKYENGINE API  参考手册返回目录  

 

int32 mr_plat(int32 code = 1106, int32 param)



Description
发送获得短信中心的号码的请求。
Parameters

Name Description
param 应用编号

Return Value

MR_WAITING                 发送请求成功
MR_FAILED                   失败
MR_IGNORE                  不支持该功能

Remarks

处理结果通过mr_event返回给应用,mr_event的参数如下:
第一个:MR_SMS_GET_SC(16);
第二个:ascii编码的短信中心的字符串的地址,地址为0标志获得失败;
第三个:0。

Example

/*mrp code*/

mrc_plat( 1106, 0 );

mr_event事件处理:
case MR_SMS_GET_SC:
{
    int32 adr = (int32)wParam;
    //add your code here

}

See Also

 


Copyright ?2005-20010 SKY-MOBI

返回目录