Desktop Functions: Smart Device Functions:
|
Search Results for "GetLastError" in [All]msiuser32
/// <para>If the function fails, the return value is NULL. To get extended error information, call GetLastError.</para>
''' <para>If the function fails, the return value is NULL. To get extended error information, call GetLastError.</para> When you call this function, the WndProc function must respond to the WM_NCCREATE message by returning TRUE. If it does not, the creation process will fail. A null handle will be returned from CreateWindowEx and GetLastError will return 0. See MSDN on WM_NCCREATE (http://msdn.microsoft.com/en-us/library/ms632635.aspx) and also WM_CREATE (http://msdn.microsoft.com/en-us/library/ms632619.aspx). You can have your WndProc call DefWindowProc, which will take care of this issue.
/// <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
''' <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns> If the clipboard is not owned, the return value is NULL. To get extended error information, call GetLastError. 6: GetDC Windows NT/2000/XP: To get extended error information, call GetLastError. 7: GetDCEx Windows NT/2000/XP: To get extended error information, call GetLastError. 8: GetLastError
static extern TODO GetLastError(TODO);
Declare Function GetLastError Lib "kernel32.dll" (TODO) As TODO
int nLatError = GetLastError(); // in kernel32.dll
/// If the function fails, the return value is zero. To get extended error information, call GetLastError. 11: GetWindowTex
/// call GetLastError. 12: MoveWindow
/// <br />To get extended error information, call GetLastError.
''' <para>If the function fails, the return value is zero. To get extended error information, call GetLastError.</para></returns> 13: PostMessage MSDN says: If the function fails, the return value is zero. To get extended error information, call GetLastError.
/// information, call GetLastError. 15: RemoveProp
/// <para>Windows Vista: RemoveProp is subject to the restrictions of User Interface Privilege Isolation (UIPI). A process can only call this function on a window belonging to a process of lesser or equal integrity level. When UIPI blocks property changes, GetLastError will return 5.</para> 16: SetProp
/// <para>Windows Vista: SetProp is subject to the restrictions of User Interface Privilege Isolation (UIPI). A process can only call this function on a window belonging to a process of lesser or equal integrity level. When UIPI blocks property changes, GetLastError will return 5.</para>
/// <returns>If the data handle and string are added to the property list, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
/// If the function fails, the return value is zero. To get extended error information, call GetLastError. 18: SetWindowsHookEx
/// <para>To get extended error information, call GetLastError.</para> 19: SetWindowText
/// To get extended error information, call GetLastError.
/// <see cref="!:https://msdn.microsoft.com/en-us/library/windows/desktop/ms679360%28v=vs.85%29.aspx">GetLastError</see> wtsapi3221: WTSOpenServer As always, only do SetLastError=true if you actually intend to call GetLastError.
/// If the function fails, the return value is zero. To get extended error information, call GetLastError.
/// If the function fails, the return value is zero. To get extended error information, call GetLastError. rapi23: CeGetLastError
public static extern int CeGetLastError(); function info on msdn at http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wceactsy/html/cerefCeGetLastErrorRAPI.asp 24: CeMoveFile Returns 0 for failure. Use CeGetLastError() and CeRapiGetError() to see errors on failure. psapi
Console.WriteLine("Call to EnumDeviceDrivers failed! To get extended error information, call GetLastError.");
Console.WriteLine("Call to EnumDeviceDrivers failed! To get extended error information, call GetLastError.");
Console.WriteLine("Call to EnumDeviceDrivers failed! To get extended error information, call GetLastError.");
Console.WriteLine("Call to EnumDeviceDrivers failed! To get extended error information, call GetLastError."); coredll27: CreateEvent
''' <returns>Nonzero indicates success. Zero indicates failure. To get extended error information, call GetLastError.</returns>
''' <returns>Nonzero indicates success. Zero indicates failure. To get extended error information, call GetLastError.</returns> 28: CreateMutex
//public static extern int GetLastError(); 29: CreateProcess You will need the above ProcessInfo class and may also want to use GetLastError and WaitForSingleObject. 30: DisableGestures Returns true if function succeeds; otherwise, false. To retrieve extended error information, call GetLastError 31: GetLastError
static extern Int32 GetLastError();
Declare Function GetLastError Lib "coredll.dll" () As Int32 It is recommended that you do not call the Win32 GetLastError method directly. Because of the way P/Invoke works, the error message may get reset between Win32 calls in your code. Instead, call the Marshal.GetLastWin32Error method, which can be combined with the ever useful Marshal.ThrowExceptionForHR method. See below for an example.
Int32 lastError = GetLastError();
lastError = GetLastError()
3 - SYSMEM_FAILED: Change failed. Use GetLastError to get more details. 33: SipSetCurrentIM
int error = Marshal.GetLastWin32Error(); // Equivalent to Win32 GetLastError() WAIT_FAILED indicates failure. To get extended error information, call GetLastError. credui
''' <returns><c>True</c> on success; otherwise <c>False</c>. For extended error information, call the GetLastError() function.</returns>
''' If the password cannot be decrypted, the function returns FALSE, an a call to the GetLastError function will return the value ERROR_NOT_CAPABLE.</param>
''' <returns><c>True</c> on success; otherwise <c>False</c>. For extended error information, call the GetLastError() function.</returns> Enums
// will fail and GetLastError() will indicate ERROR_PASSWORD_RESTRICTION
' will fail and GetLastError() will indicate ERROR_PASSWORD_RESTRICTION 38: WTSINFO
/// This value returns <B>FALSE</B>. If you call <see cref="GetLastError"/> to get extended error information, <B>GetLastError</B> returns <B>ERROR_NOT_SUPPORTED</B>.
/// This value returns <B>FALSE</B>. If you call <see cref="GetLastError"/> to get extended error information, <B>GetLastError</B> returns <B>ERROR_NOT_SUPPORTED</B>.
/// This value returns <B>FALSE</B>. If you call <see cref="GetLastError"/> to get extended error information, <B>GetLastError</B> returns <B>ERROR_NOT_SUPPORTED</B>.
/// This value returns <B>FALSE</B>. If you call <see cref="GetLastError"/> to get extended error information, <B>GetLastError</B> returns <B>ERROR_NOT_SUPPORTED</B>.
/// This value returns <B>FALSE</B>. If you call <see cref="GetLastError"/> to get extended error information, <B>GetLastError</B> returns <B>ERROR_NOT_SUPPORTED</B>.
/// This value returns <B>FALSE</B>. If you call <see cref="GetLastError"/> to get extended error information, <B>GetLastError</B> returns <B>ERROR_NOT_SUPPORTED</B>. ConstantsOne of the many error codes returned by GetLastError, which should not be used within the .NET framework. Instead you must use Marshal.GetLastWin32Error(). 40: WINERROR It is documented that you should NOT use the pinvoke GetLastError() due to the fact that the runtime userenv41: LoadUserProfile Otherwise, if the function fails, the return value is zero. To get extended error information, call GetLastError. setupapi42: SetupCopyOEMInf SP_COPY_NOOVERWRITE Copy only if the specified files don't currently exist in the INF directory. If the INF does currently exist, this API will fail and GetLastError returns ERROR_FILE_EXISTS. In this case, the existing INF file's filename will be placed into the appropriate field in the destination INF file's information output buffers. in Size of the DestinationInfFileName buffer, in characters, or zero if the buffer is not specified. If DestinationInfFileName is specified and this buffer size is less than the size required to return the destination INF filename (including full path), this function will fail. In this case GetLastError will return ERROR_INSUFFICIENT_BUFFER. The SetupCopyOEMInf function failed. For extended error information, call GetLastError.
ErrorCode = GetLastError(); in Zero-based index to the list of interfaces in the device information set. You should first call this function with the MemberIndex parameter set to zero to obtain the first interface. Then, repeatedly increment MemberIndex and retrieve an interface until this function fails and GetLastError returns ERROR_NO_MORE_ITEMS (259). If the function fails, the return value is zero. To get extended error information, call GetLastError. A call to SetupDiEnumDeviceInterfaces retrieves a pointer to a structure that identifies a specific device interface in the previously retrieved DeviceInfoSet array. The call specifies a device interface by passing an array index. To retrieve information about all of the device interfaces, an application can loop through the array, incrementing the array index until the function returns zero, indicating that there are no more interfaces. The GetLastError API function then returns No more data is available. If the function could not find a line, the return value is zero. To get extended error information, call GetLastError. If this function finds the next line, the return value is a nonzero value. Otherwise, the return value is zero. To get extended error information, call GetLastError. The function returns a nonzero value if it finds a matching line. Otherwise, the return value is zero. To get extended error information, call GetLastError.
If the function fails, the return value is zero. To get extended error information, call GetLastError. If this function is called with a ReturnBuffer of NULL and a ReturnBufferSize of zero, the function puts the buffer size needed to hold the specified data into the variable pointed to by RequiredSize. If the function succeeds in this, the return value is a nonzero value. Otherwise, the return value is zero and extended error information can be obtained by calling GetLastError. You can call the function once to get the required buffer size, allocate the necessary memory, and then call the function a second time to retrieve the data. Using this technique, you can avoid errors due to an insufficient buffer size. 50: SetupOpenInfFile
The function returns a handle to the opened INF file if it is successful. Otherwise, the return value is INVALID_HANDLE_VALUE. Extended error information can be retrieved by a call to GetLastError. If the load fails because the INF file type does not match InfClass, the function returns INVALID_HANDLE_VALUE and a call to GetLastError returns ERROR_CLASS_MISMATCH. winspool51: ClosePrinter As always, only do SetLastError=true if you actually intend to call GetLastError. 52: GetPrinterData As always, only do SetLastError=true if you actually intend to call GetLastError. 53: OpenPrinter As always, only do SetLastError=true if you actually intend to call GetLastError (This includes throwing a Win32Exception if the call fails) 54: WritePrinter
// If you did not succeed, GetLastError may give more information gdi3255: CreateDIBSection If the function succeeds, the return value is a handle to the newly created device-independent bitmap (and ppvBits will point to the bitmap’s bit values). If the function fails, the return value is NULL (and ptr ppvBits will be NULL). To get extended error information, call GetLastError. advapi3256: LookupAccountSid If the function cannot find an account name for the SID, the LookupAccountSid function fails and GetLastError returns ERROR_NONE_MAPPED. This can occur if a network time-out prevents the function from finding the name. It also occurs for SIDs that have no corresponding account name, such as a logon SID that identifies a logon session.
int error = GetLastError(); 58: LsaOpenPolicy
aWinErrorCode = (uint)GetLastError();
public static void SetFileOrFolderOwner(String objectName) //Note this is very basic and is silent on fail as I havent checked GetlastError and thrown an exception etc shlwapi60: PathFileExists
/// <returns>Returns TRUE if the file exists, or FALSE otherwise. Call GetLastError for extended error information.</returns>
''' <returns>Returns TRUE if the file exists, or FALSE otherwise. Call GetLastError for extended error information.</returns> Cut off search results after 60. Please refine your search. |