Exemplo n.º 1
0
 public static extern bool NET_DVR_GetIPCProtoList(int lUserID, ref NET_DVR_IPC_PROTO_LIST lpProtoList);
Exemplo n.º 2
0
 public static extern bool NET_DVR_GetIPCProtoList(int lUserID, ref NET_DVR_IPC_PROTO_LIST lpProtoList);
Exemplo n.º 3
0
 /// <summary>
 /// 获取设备支持协议列表
 /// </summary>
 /// <param name="userId">用户id</param>
 /// <param name="list">输出协议列表</param>
 /// <returns>TRUE表示成功,FALSE表示失败。</returns>
 public static bool GetIPCList(int userId, ref NET_DVR_IPC_PROTO_LIST list)
 {
     return(HikApi.NET_DVR_GetIPCProtoList(userId, ref list));
 }