|  SKYENGINE API  
      参考手册返回目录 | 
  
 (int32 code = 
      6000,  
  
  
  
     int32 mr_platEx 
    
       
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 
      无 
MR_SUCCESS 支持后台气泡框
MR_FAILED 不支持后台气泡框
MR_IGNORE 不支持该接口
/*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;
}