创建您自己的 HRESULT?
我已经有一个使用大量 COM 和 HRESULTS 的项目。无论如何,我想知道是否可以定义您自己的 HRESULT,并且能够将 FormatMessage() 用于我们自己的 HRESULT?
我四处搜寻却找不到任何东西。有什么想法吗?
编辑
基本上我想定义一组我自己的 HRESULT,而不是仅仅返回 E_FAIL。或者其他通用的之一。像 E_FAIL 就可以了。但假设我想指出,例如地理处理子系统崩溃或文件是无效的光栅图像。该应用程序已经在整个过程中使用了 COM。
I already have a project that uses a lot of COM, and HRESULTS. Anyways I was wondering if it's possible to define your own HRESULT, AND be able to use the FormatMessage() for our own HRESULT?
I dug around and can't find anything. Any ideas?
EDIT
Basically I want to define a set of my own HRESULTs instead of just returning E_FAIL. Or one of the other generic ones. Like E_FAIL is fine. But let's say I want to point out that for example the Geoprocessing subsystem crashed or the file is an invalid Raster Image. The application already uses COM throughout it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的当然。通常,您会创建一个 .mc 文件 并包含在你的项目中。指示 mc 编译器 构建它 - 这创建一个头文件和一个 .rc 文件。 HRESULTS 在头文件中定义。您可以像平常一样将 .rc 文件包含在项目中,以便资源编译器进行编译 - 这会将消息定义放入最终模块中。然后您可以使用正常的 FormatMessage 函数使用 HRESULTS 格式化消息并生成错误信息和其他内容。
我将其作为我的 .mc 文件之一的命令行:
这将在包含目录中创建 error.rc 和 error.h 。然后我做了:
在项目的主 .rc 文件中。
.mc 文件看起来有点像这样:
定义了很多错误号。
Yes of course. Typically you create a .mc file and include that in your project. Instruct the mc compiler to build it - this creates a header file and a .rc file. The HRESULTS are defined in the header file. You include the .rc file in your project as normal for the resource compiler to compile - this puts the message definitions into your final module. Then you can use the normal FormatMessage functions to format the messages using the HRESULTS and generate error info and the other stuff.
I have this as the command line for one of my .mc files:
This creates errors.rc and errors.h in the include directory. Then I did:
in my main .rc file for the project.
The .mc file looks a bit like this:
with lots of error numbers defined.