Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

Search Results for "getlasterror" in [All]

wininet

.

Return Values : Returns TRUE if successful, or FALSE otherwise. To get a specific error message, call GetLastError.

.

    [DllImport("wininet.dll", EntryPoint = "GetLastError")]

.

    public static extern long GetLastError();

.

    * Returns a valid handle to the FTP, Gopher, or HTTP session if the connection is successful, or NULL otherwise. To get extended error information, call GetLastError. An application can also use InternetGetLastResponseInfo to determine why access to the service was denied.

gdi32

.

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.

advapi32

.

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();

.

        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

ws2_32

9: send
.

If no error occurs, sendto returns the total number of bytes sent, which can be less than the number indicated by len. Otherwise, a value of SOCKET_ERROR is returned, and a specific error code can be retrieved by calling WSAGetLastError.

.

WSAGetLastError.

10: SendTo
.

If no error occurs, sendto returns the total number of bytes sent, which can be less than the number indicated by len. Otherwise, a value of SOCKET_ERROR is returned, and a specific error code can be retrieved by calling WSAGetLastError.

.

WSAGetLastError.

.

static extern Int32 WSAGetLastError();

.

Declare Function WSAGetLastError Lib "ws2_32.dll" () As Int32

.
Documentation
[WSAGetLastError] on MSDN

mpr

.

static extern TODO WNetGetLastErrorA(ref int lpError,ref string lpErrorBuf,int nErrorBufSize,string lpNameBuf,int nNameBufSize);

.

public static extern uint WNetGetLastError(ref int lpError,StringBuilder lpErrorBuf,int nErrorBufSize,StringBuilder lpNameBuf,int nNameBufSize);

.

Declare Function WNetGetLastError Lib "mpr.dll" Alias "WNetGetLastErrorA" (ByRef lpError As Integer, ByVal lpErrorBuf As String, ByVal nErrorBufSize As Integer, ByVal lpNameBuf As String, ByVal nNameBufSize As Integer) As Integer

.
Documentation
[WNetGetLastError] on MSDN

icmp

.

        printf("IcmpCreatefile returned error: %ld\n", GetLastError());

Enums

.

    // will fail and GetLastError() will indicate ERROR_PASSWORD_RESTRICTION

.

    ' will fail and GetLastError() will indicate ERROR_PASSWORD_RESTRICTION

.

     /// 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>.

winspool

.

As always, only do SetLastError=true if you actually intend to call GetLastError.

.

As always, only do SetLastError=true if you actually intend to call GetLastError.

.

As always, only do SetLastError=true if you actually intend to call GetLastError (This includes throwing a Win32Exception if the call fails)

.

    // If you did not succeed, GetLastError may give more information

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>

wtsapi32

.

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.

msi

.

static extern IntPtr MsiGetLastErrorRecord();

.
Documentation
[MsiGetLastErrorRecord] on MSDN

kernel32

.
.
.

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.

.

                    // check GetLastError value (MUST use this call. See MSDN)

.

    private static extern uint GetLastError();*/

.

   Private Declare Function GetLastError Lib "kernel32" Alias "GetLastError" () As Integer

.

       MsgBox(GetLastError())

.

       MsgBox(GetLastError())

.

       MsgBox(GetLastError())

.

       MsgBox(GetLastError())

.

static extern uint GetLastError();

.

// GetLastError is save!

.

Tested extensively here http://stackoverflow.com/questions/17918266/winapi-getlasterror-vs-marshal-getlastwin32error

.

// You should never PInvoke to GetLastError.  Call Marshal.GetLastWin32Error instead!

.

' You should never PInvoke to GetLastError.  Call Marshal.GetLastWin32Error instead!

.

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.

.
Documentation
[GetLastError] on MSDN
.

/// If the function fails, the return value is TIME_ZONE_ID_INVALID. To get extended error information, call GetLastError.

.

/// If the function fails, the return value is zero. To get extended error information, call GetLastError.

.

If you forget to set the OSVersionInfoSize field of the OSVERSIONINFO struct, the function will return false. GetLastError() will return:

.

If you forget to set the OSVersionInfoSize field of the OSVERSIONINFO struct, the function will return false. GetLastError() will return:

.

Return Value - 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.

.

The SetLastError flag needs to be set to true in order to retain information that would be obtained from GetLastError in the event of an error being returned.

.

                else if(GetLastError() == ERROR_INSUFFICIENT_BUFFER)

.

                    Marshal.ThrowExceptionForHR(GetLastError());

.

Call SetLastError(0) at the beginning of your function if you'll use GetLastError.

.

        /// If the function fails, the return value is TIME_ZONE_ID_INVALID. To get extended error information, call GetLastError.

.

        /// If the function fails, the return value is zero. To get extended error information, call GetLastError.

.

static extern uint GetLastError();

.

           throw new Win32Exception((int)GetLastError());

.

           throw new Win32Exception((int)GetLastError());

rapi

. .

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

.
Documentation
[CeGetLastError] on MSDN
.

Returns 0 for failure. Use CeGetLastError() and CeRapiGetError() to see errors on failure.

userenv

.

Otherwise, if the function fails, the return value is zero. To get extended error information, call GetLastError.

user32

.

/// <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.

48: GetDC
.

Windows NT/2000/XP: To get extended error information, call GetLastError.

.

Windows NT/2000/XP: To get extended error information, call GetLastError.

.

static extern TODO GetLastError(TODO);

.

Declare Function GetLastError Lib "kernel32.dll" (TODO) As TODO

.
Documentation
[GetLastError] on MSDN
.

    int nLatError = GetLastError(); // in kernel32.dll

.

/// If the function fails, the return value is zero. To get extended error information, call GetLastError.

.

///     call GetLastError.

.

///     <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>

.

MSDN says: If the function fails, the return value is zero. To get extended error information, call GetLastError.

.

///     information, call GetLastError.

.

/// <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>

.

/// <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.

.

///     <para>To get extended error information, call GetLastError.</para>

Cut off search results after 60. Please refine your search.


 
Access PInvoke.net directly from VS: