Delphi 使用 URLDownloadToFile 从 Internet 下载视频
如何在Delphi中实现以下Windows函数?
HRESULT URLDownloadToFile(
LPUNKNOWN pCaller,
LPCTSTR szURL,
LPCTSTR szFileName,
DWORD dwReserved,
LPBINDSTATUSCALLBACK lpfnCB
);
URLDownloadToFile 函数: http://msdn.microsoft.com/ en-us/library/ms775123(VS.85).aspx
提示我的问题是在这里提出的。
使用curlpp从youtube下载flv在卷曲之上 - 视频未播放
问候,Pieter。
How can I implement the following Windows function in Delphi?
HRESULT URLDownloadToFile(
LPUNKNOWN pCaller,
LPCTSTR szURL,
LPCTSTR szFileName,
DWORD dwReserved,
LPBINDSTATUSCALLBACK lpfnCB
);
URLDownloadToFile Function: http://msdn.microsoft.com/en-us/library/ms775123(VS.85).aspx
The question that prompted me was asked here.
Downloading flv from youtube using curlpp on top of curl - video not playing
Regards, Pieter.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
例如,如果没有头文件,我们就无法知道 LPBINDSTATUSCALLBACK 是什么。最好的方法是搜索是否有人已经对整个头文件进行了转换。如果没有,请尝试一些 C 到 Delphi 转换器 (http://www.drbob42.com/delphi/headconv.htm, http://cc.embarcadero.com/item/26951)。请注意,他们只能转换 60-80% 的代码,但希望您感兴趣的部分能够被转换。如果您仍然遇到困难,请搜索标头的 VB 转换。比从 C 转换要容易得多。
Without header file we can not know what is LPBINDSTATUSCALLBACK for example. The best approach is to google around if someone has already made a conversion of the whole header file. If there isn't one, then try some C to Delphi convertor (http://www.drbob42.com/delphi/headconv.htm, http://cc.embarcadero.com/item/26951). Beware that they can only convert 60-80% of the code, but hopefully part you are interested in will be converted. If you are still stuck after all this, then search for VB conversion of the header. It will be much easier then conversion from C.