This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Note
Access to this page requires authorization. You can trysigning in orchanging directories.
Access to this page requires authorization. You can trychanging directories.
Sets the last-error code for the calling thread.
void SetLastError( [in] DWORD dwErrCode);
[in] dwErrCode
The last-error code for the thread.
None
The last-error code is kept in thread local storage so that multiple threads do not overwrite each other's values.
Most functions callSetLastError orSetLastErrorEx only when they fail. However, some system functions callSetLastError orSetLastErrorEx 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 theGetLastError 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.
Requirement | Value |
---|---|
Minimum supported client | Windows XP [desktop apps | UWP apps] |
Minimum supported server | Windows Server 2003 [desktop apps | UWP apps] |
Target Platform | Windows |
Header | errhandlingapi.h (include Windows.h) |
Library | Kernel32.lib |
DLL | Kernel32.dll |
Was this page helpful?
Was this page helpful?