共用方式為


查閱錯誤碼號碼的文字

有時必須顯示與從網路相關函式傳回之錯誤碼相關聯的錯誤文字。 您可能需要使用系統所提供的網路管理功能來執行這項工作。

這些訊息的錯誤文字位於名為 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