Last-Error Code
When an error occurs, most functions in the Microsoft® Win32® application programming interface (API) return an error code, usually FALSE,
NULL, 0xFFFFFFFF, or
1. Many functions in the Win32 API also set an internal error code called the
last-error code. When a function succeeds, the last-error code is not reset. The error code
is maintained separately for each running thread; an error in one thread does
not overwrite the last-error code in another thread. An application can retrieve
the last-error code by using the
GetLastError function; the error code may tell more about what actually occurred to make
the function fail.
The
SetLastError function sets the error code for the current thread. The
SetLastErrorEx function also allows the caller to set an error type indicating the severity
of the error. These functions are intended primarily for dynamic-link libraries
(DLLs), so they can emulate the behavior of the Win32 API.
The Win32 API defines a set of error codes that can be set as last-error codes
or be returned by these functions. Error codes are 32-bit values (bit 31 is
the most significant bit). Bit 29 is reserved for application-defined error
codes; no Win32 API error code has this bit set. Developers who define an error code
for an application should set this bit to indicate that the error code has
been defined by an application and to ensure that the error code does not conflict
with any system-defined error codes. For more information, see the WINERROR.H
SDK header file or
Error Codes.
- Software for developers
-
Delphi Components
.Net Components
Software for Android Developers
- More information resources
-
MegaDetailed.Net
Unix Manual Pages
Delphi Examples
- Databases for Amazon shops developers
-
Amazon Categories Database
Browse Nodes Database