2.1.4.1.13 SetLastError


Description

Sets the last-error code for the calling thread.

Syntax

void SetLastError( DWORD dwErrCode )

Parameters

dwErrCode
[input] The last-error code for the thread.

Return

This function does not return a value.

Examples

Remark

The last-error code is kept in thread local storage so that multiple threads do not overwrite each other's values.

This function is intended primarily for use by dynamic-link libraries (DLL). A DLL can provide the applications that are using it with additional diagnostic information by calling this function after an error occurs. Most functions call SetLastError or SetLastErrorEx only when they fail. However, some system functions call SetLastError or SetLastErrorEx under conditions of success; those cases are noted in each function's documentation.

Applications can optionally retrieve the value set by this function by using the GetLastError function immediately after a function fails.

Error codes are 32-bit values (bit 31 is the most significant bit). Bit 29 is reserved for application-defined error codes; no system error code has this bit set. If you are defining an error code for your application, set this bit to indicate that the error code has been defined by your application and to ensure that your error code does not conflict with any system-defined error codes.


See Also

GetLastError

Header to Include

origin.h

Reference