URLDownloadToFile进度条
我正在使用 MASM 构建一个下载程序,但问题是我不知道如何使用进度条来显示下载进度,我正在使用 URLDownloadToFile,如下所示:
invoke URLDownloadToFile, NULL, chr$("http://masm32.masmcode.com/masm32/m32v10r.zip"), chr$("D:\test.zip"), 0, 0
最好的问候。
I'm using MASM to build a download program, but the thing is that i don't know how to use a progress bar to show the progress of the download, i'm using URLDownloadToFile like this:
invoke URLDownloadToFile, NULL, chr$("http://masm32.masmcode.com/masm32/m32v10r.zip"), chr$("D:\test.zip"), 0, 0
Best Regards.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
哇,你一定喜欢痛苦...结合 asm 和 COM...
根据 MSDN 文档 URLDownloadToFile 的最后一个参数称为 lpfnCB,它是指向调用者的 IBindStatusCallback 接口的指针,调用者的 OnProgress 方法将被调用以报告下载进度。
wow, you must love pain... combining asm and COM....
According to the MSDN documentation the last parameter of URLDownloadToFile is called lpfnCB, a pointer to the IBindStatusCallback interface of the caller whose OnProgress method will be called to report download progress.