|  SKYENGINE API  
      参考手册返回目录 | 
  
 (int32 code = 
      1313,  
  
  
  
     int32 mr_platEx 
    
       
uint8* input, 
int32 input_len, 
uint8** output, 
      
int32* output_len, 
MR_PLAT_EX_CB* 
  cb
)
Description
设置层位置。
Parameters
  
    
    
       
    Name 
      Description 
       
    input 
      T_LAYER_POS数据结构指针 
       
    input_len 
      T_LAYER_POS数据结构大小 
       
    output 
      无 
       
    output_len 
      无 
       cb 
      无 
MR_SUCCESS 成功
MR_FAILED 失败
MR_IGNORE 不支持该功能
T_LAYER_POS数据结构:
typedef struct
{
int32 x;
int32 y;
}T_LAYER_POS;
/*mrp code*/
T_LAYER_POS pos;
pos.x = DISPLAYPIC_X-50;
pos.y = DISPLAYPIC_Y-10;
mrc_platEx( 1313, (uint8*)&pos, sizeof(T_LAYER_POS), NULL, NULL, NULL );