查找错误代码号的文本

有时需要显示与网络相关函数返回的错误代码关联的错误文本。 可能需要使用系统提供的网络管理功能执行此任务。

这些消息的错误文本位于名为 Netmsg.dll 的消息表文件中,该文件位于 %systemroot%\system32 中。 此文件包含NERR_BASE (2100) 到 MAX_NERR (NERR_BASE+899) 范围内的错误消息。 这些错误代码在 SDK 头文件 lmerr.h 中定义。

LoadLibraryLoadLibraryEx 函数可以加载Netmsg.dll。 FormatMessage 函数将错误代码映射到消息文本,给定Netmsg.dll文件的模块句柄。

下面的示例演示了如何显示与网络管理功能关联的错误文本,以及显示与系统相关的错误代码关联的错误文本。 如果提供的错误号在特定范围内,则会加载netmsg.dll消息模块,并使用 FormatMessage 函数查找指定的错误号。

#include <windows.h>
#include <stdio.h>

#include <lmerr.h>

void
DisplayErrorText(
    DWORD dwLastError
    );

#define RTN_OK 0
#define RTN_USAGE 1
#define RTN_ERROR 13

int
__cdecl
main(
    int argc,
    char *argv[]
    )
{
    if(argc != 2) {
        fprintf(stderr,"Usage: %s <error number>\n", argv[0]);
        return RTN_USAGE;
    }

    DisplayErrorText( atoi(argv[1]) );

    return RTN_OK;
}

void
DisplayErrorText(
    DWORD dwLastError
    )
{
    HMODULE hModule = NULL; // default to system source
    LPSTR MessageBuffer;
    DWORD dwBufferLength;

    DWORD dwFormatFlags = FORMAT_MESSAGE_ALLOCATE_BUFFER |
        FORMAT_MESSAGE_IGNORE_INSERTS |
        FORMAT_MESSAGE_FROM_SYSTEM ;

    //
    // If dwLastError is in the network range, 
    //  load the message source.
    //

    if(dwLastError >= NERR_BASE && dwLastError <= MAX_NERR) {
        hModule = LoadLibraryEx(
            TEXT("netmsg.dll"),
            NULL,
            LOAD_LIBRARY_AS_DATAFILE
            );

        if(hModule != NULL)
            dwFormatFlags |= FORMAT_MESSAGE_FROM_HMODULE;
    }

    //
    // Call FormatMessage() to allow for message 
    //  text to be acquired from the system 
    //  or from the supplied module handle.
    //

    if(dwBufferLength = FormatMessageA(
        dwFormatFlags,
        hModule, // module to get message from (NULL == system)
        dwLastError,
        MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), // default language
        (LPSTR) &MessageBuffer,
        0,
        NULL
        ))
    {
        DWORD dwBytesWritten;

        //
        // Output message string on stderr.
        //
        WriteFile(
            GetStdHandle(STD_ERROR_HANDLE),
            MessageBuffer,
            dwBufferLength,
            &dwBytesWritten,
            NULL
            );

        //
        // Free the buffer allocated by the system.
        //
        LocalFree(MessageBuffer);
    }

    //
    // If we loaded a message source, unload it.
    //
    if(hModule != NULL)
        FreeLibrary(hModule);
}

编译此程序后,可以插入错误代码号作为参数,程序将显示文本。 例如:

C:\> netmsg 2453
Could not find domain controller for this domain