|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| kernel32.lib
| Header File
| winbase.h
| Unicode
| No
| Platform Notes
| None
|
|
|
GetLastError
The GetLastError function returns the calling thread's last-error code value. The last-error
code is maintained on a per-thread basis. Multiple threads do not overwrite each
other's last-error code.
DWORD GetLastError(VOID)
Parameters
This function has no parameters.
Return Values
The return value is the calling thread's last-error code value. Functions set
this value by calling the SetLastError function. The Return Value section of each reference page notes the conditions under which the function
sets the last-error code.
Remarks
You should call the GetLastError function immediately when a function's return value indicates that such a call
will return useful data. That is because some functions call SetLastError(0) when they succeed, wiping out the error code set by the most recently
failed function.
Most functions in the Win32 API that set the thread's last error code value
set it when they fail; a few functions set it when they succeed. Function failure
is typically indicated by a return value error code such as FALSE, NULL,
0xFFFFFFFF, or 1. Some functions call SetLastError under conditions of success; those cases are noted in each function's
reference page.
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
one. That indicates that the error code has been defined by an application, and
ensures that your error code does not conflict with any error codes defined by
the operating system.
To obtain an error string for operating system error codes, use the FormatMessage function. For a complete list of error codes, see the WINNT.H header file in
the Win32 SDK.
See Also
FormatMessage, SetLastError, SetLastErrorEx
Comment from Greatis Sofware
GetLastError function is unique. There are no other WinAPI functions that are mentioned as often as GetLastError. You can always find phrase "If the function fails, the return value is blah-blah-blah. To get extended error information, call GetlastError" in every topic of
win32.hlp file, where subject is the function, which can return an error. Function GetLastError returns integer code, that is not very useful, if we are talkin about error message to be displayed to user, because it's just error number in DWORD. Of course, error
codes can be found in WINNT.H, but end user of our application will
hardly do this. It would be great to show some clear text message, which he could send to us with angry reports about program instability... It turned out, that is quite possible. We just need to take FormatMessage, and use it with our error code to get text message in user's language on it. Very friendly, isnt't it? By the way there's C example in FormatMessage topic. And Delphi example is here:
function GetLastErrorText: string;
var
C: array[Byte] of Char;
begin
FormatMessage(
FORMAT_MESSAGE_FROM_SYSTEM,
nil,
GetLastError,
LOCALE_USER_DEFAULT,
C,
SizeOf(C),
nil);
Result:=C;
end;
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime without manual coding. Full C# source codes are available More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|