P/Invoke 中奇怪的最后一个错误
伙计们!我通过 P/Invoke 调用“PrintDlg”Win32 API。奇怪的是,如果我使用 Visual Studio 调试模式(按 F5)运行我的应用程序,最后一个错误是 122,这意味着“传递给系统调用的数据区域太小”,但是如果我使用 Ctrl+F5 运行它,最后一个错误为 0,消息为“操作成功完成”。这怎么可能?非常感谢...
guys! I am calling "PrintDlg" Win32 API via P/Invoke. Strange enough, if I use Visual Studio debug mode (press F5) to run my application, the last error is 122, which means "The data area passed to a system call is too small" , but if i ran it with Ctrl+F5, the last error is 0 and the message is "The operation completed successfully". How could this be possible? Many thanks...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
a) 除非函数返回 false,否则不检查错误。
b) 不要使用 GetLastError,使用 CommDlgExtendedError 作为文档建议。
c) 开始接受您问题的答案。 :)
a) Don't check for an error unless the function returns false.
b) Don't use GetLastError, use CommDlgExtendedError as the docs suggest.
c) Start accepting answers on your questions. :)