SKYENGINE API  参考手册返回目录  

 
int32 mr_platEx

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



Description
查询是否支持气泡框接口。
Parameters

Name Description
input
input_len
output int32 指针,为1 表示禁止长在线后台显示,为0表示运行显示。
output_len
cb

Return Value

MR_SUCCESS          支持后台气泡框
MR_FAILED             不支持后台气泡框
MR_IGNORE            不支持该接口

Remarks

 

Example

/*mrp code*/

BOOL CheckSupportTipInfo(void)
{
    int32 *output = NULL;
    re = mrc_platEx( 6000, NULL, 0, (uint8**)&output, NULL, NULL );
    if (re == MR_SUCCESS)
    {
         if((int32)output)
             return FALSE;
         return TRUE;
    }
    return FALSE;
}

See Also

 


Copyright ?2005-20010 SKY-MOBI

返回目录