请问哪有在Delphi下声明windows API的资料下载? ( 积分: 20 )

  • 主题发起人 主题发起人 bin2000
  • 开始时间 开始时间
B

bin2000

Unregistered / Unconfirmed
GUEST, unregistred user!
请问哪有在Delphi下声明windows API的资料下载?<br>比如:<br>int sendto(<br> &nbsp;SOCKET s,<br> &nbsp;const char* buf,<br> &nbsp;int len,<br> &nbsp;int flags,<br> &nbsp;const struct sockaddr* to,<br> &nbsp;int tolen<br>);<br>在Delphi下如何声明?
 
请问哪有在Delphi下声明windows API的资料下载?<br>比如:<br>int sendto(<br> &nbsp;SOCKET s,<br> &nbsp;const char* buf,<br> &nbsp;int len,<br> &nbsp;int flags,<br> &nbsp;const struct sockaddr* to,<br> &nbsp;int tolen<br>);<br>在Delphi下如何声明?
 
如你题,可以在Delphi自带的Winsock.pas中有。<br>或许在Google中搜索一下。<br>如果还不行,那么自己改变。
 
function sendto(s: TSocket; var Buf; len, flags: Integer; var addrto: TSockAddr;<br> &nbsp;tolen: Integer): Integer; stdcall;<br>这个API在delphi的winsock.pas中有啊!<br>只要你引用winsock单元即可
 
看看delphi里面的Help/Windows SDK的帮助。
 
http://program.tommsoft.com/
 
如果只的有必要的话只是将C的语法翻译成PASCAL罢了,不过调用API是不需要我们自己去翻译,BL的牛人们都帮我们做好了
 
多人接受答案了。
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
I
回复
0
查看
592
import
I
后退
顶部