struct hostent { char FAR * h_name; /* official name of host */ char FAR * FAR * h_aliases; /* alias list */ short h_addrtype; /* host address type */ short h_length; /* length of address */ char FAR * FAR * h_addr_list; /* list of addresses */#defin…
花生壳:1.LJSZForm-Lable1-Caption改成 “IP地址或域名:”2.LJSZForm-BitBtn1Click-注释掉--else if IsIP(Trim(IPEdit.Text))=False then TLShowMessage('IP地址错误',False) 3.DataM-DLDataSrvr-fmLJWait.Label1.Caption:='正在连接数据服务器,请稍候....'; fmLJWait.Update;-后面SConn.Address:=ZJIPAdd…
//十六进制(S)-->>十进制(I) [重写:Jey]function hextoint(s: string): Integer; begin //$代表16进制 Result:=StrToInt('$'+s);end; //十进制转换为二进制字符串 [重写:Jey]function inttoBin(i: integer): string;begin while i <>0 do begin //i mod 2取模,再使用fo…