博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

结构体成员数组初始化

Posted on 2010-08-25 10:03  浪端之渡鸟  阅读(507)  评论(0编辑  收藏  举报

typedef struct {
    int  protocol_id;     //protocol ID
    char  Protocol_Describe[PTZ_PROTOCOL_DESCRIPT_LEN];
}ptz_protocol;

typedef struct PTZ_SUPPORTPROTOCOL{  

  int  structsize;        

  char  dwPtzCount;

  ptz_protocol PtzItemList[PTZ_PROTOCOL_MAX_COUNT];

}ptz_supportprotocol; 

 

ptz_supportprotocol support_rsp={

    sizeof(ptz_supportprotocol),
    3,
    .PtzItemList[0]={ 0, "PELCO_D"},
     .PtzItemList[1]={ 1, "PELCO_P"},
    .PtzItemList[2]={ 2, "GAT647_2006"}
    //.PtzItemList[3]={ 3, "TRANSPARANT"},
};