首页 > 后端开发 > C++ > 正文

如何从 Windows API 调用中检索人类可读的错误消息?

Susan Sarandon
发布: 2024-11-25 01:30:11
原创
112 人浏览过

How Can I Retrieve Human-Readable Error Messages from Windows API Calls?

从 Windows API 调用中检索人类可读的错误消息

与 Windows API 交互时,通常需要检索与返回的错误代码关联的错误消息GetLastError()。此错误代码是一个整数值,而不是人类可读的文本消息。

要将错误代码转换为文本形式(这对于调试和故障排除更有用),可以使用以下代码片段:

//以字符串格式返回最后一个 Win32 错误。如果没有错误,则返回空字符串。<br>std::string GetLastErrorAsString()<br>{<pre class="brush:php;toolbar:false">//Get the error message ID, if any.
DWORD errorMessageID = ::GetLastError();
if(errorMessageID == 0) {
    return std::string(); //No error message has been recorded
}

LPSTR messageBuffer = nullptr;

//Ask Win32 to give us the string version of that message ID.
//The parameters we pass in, tell Win32 to create the buffer that holds the message for us (because we don't yet know how long the message string will be).
size_t size = FormatMessageA(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
                             NULL, errorMessageID, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), (LPSTR)&amp;messageBuffer, 0, NULL);

//Copy the error message into a std::string.
std::string message(messageBuffer, size);

//Free the Win32's string's buffer.
LocalFree(messageBuffer);
        
return message;
登录后复制

}

此函数GetLastErrorAsString() 尝试检索与 Windows API 记录的最后一个错误代码关联的错误消息。它首先检索错误消息 ID,如果有效,则使用 FormatMessageA 函数将其转换为人类可读的字符串。错误消息存储在 std::string 对象中并由函数返回。如果没有找到错误信息,则返回空字符串。

以上是如何从 Windows API 调用中检索人类可读的错误消息?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板