Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than kernel32, prefix the name with the module name and a period.
GetLastError (kernel32)
.
C# Signature:
[DllImport("kernel32.dll")]
static extern uint GetLastError();
// GetLastError is save!
// You should never PInvoke to GetLastError. Call Marshal.GetLastWin32Error instead!
VB Signature:
' You should never PInvoke to GetLastError. Call Marshal.GetLastWin32Error instead!
Boo Signature:
[DllImport("kernel32.dll")]
def GetLastError() as int:
pass
Notes:
Calling GetLastError directly via PInvoke is not guaranteed to work due to the CLR's internal interaction with the operating system. Instead, call Marshal.GetLastWin32Error.
Don't forget to include [SetLastError = true] in your function definition. For example:
To retrieve the error message corresponding to this error code, you can use the Win32Exception class, as explained in the FormatMessage page (look at the bottom of the page).
The mechanism provided by the CLR that enables managed code to call static DLL exports.k
10/27/2022 9:24:28 PM - 114.37.143.20
The FormatMessage API
12/27/2020 2:24:15 AM - -84.110.53.106
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).