delphi对应C里面连接类型代码

delphi对应C里面连接类型代码,第1张

delphi对应C里面连接类型代码

struct{
union{
NET_VCA_RECT struRect;
NET_ITC_POLYGON struPolygon;
}uRegion;
}NET_ITC_PLATE_RECOG_REGION_PARAM,*LPNET_ITC_PLATE_RECOG_REGION_PARAM;


type TuRegion = record
    case integer of
      0:
        (struRect: NET_VCA_RECT);  //矩形区域
      1:
        (struPolygon: NET_ITC_POLYGON); //多边形区域
  end;
type NET_ITC_PLATE_RECOG_REGION_PARAM= record
  uRegion:TuRegion;
end;

NET_ITC_FTP_CFG: 
struct{
union{
struct{
BYTE szDomain[MAX_DOMAIN_NAME];
BYTE byRes1[80];
}struDomain;
struct{
NET_DVR_IPADDR struIp;
}struAddrIP;
}unionServer;
}

type struDomain=record
    szDomain:Array[0..63] of  BYTE;//服务器地址,域名
         byRes1:Array[0..79] of  BYTE;
    end;
type struAddrIP=record
  struIp:NET_DVR_IPADDR;/        
end;
  type unionServer = record
    case integer of
      0:
        (struIp:struAddrIP);  //矩形区域
      1:
        (struD:struDomain); //多边形区域
  end;

type NET_ITC_FTP_CFG= record
        VunionServer:unionServer;

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5670306.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存