Desktop Functions: Smart Device Functions:
|
Search Results for "CloseHandle" in [All]coredll1: CloseHandle
public static extern bool CloseHandle(HANDLE hObject);
Declare Function CloseHandle Lib "coredll.dll" (hObject As IntPtr) As Boolean
public static extern bool CloseHandle(HANDLE hObject);
CloseHandle(p); 2: CreateEvent
public static extern bool CloseHandle(HANDLE hObject);
CloseHandle(p);
Public Shared Function CloseHandle(ByVal handle As IntPtr) As Boolean
WaitHandles.CloseHandle(_handle)
WaitHandles.CloseHandle(Me._handle)
NativeMethods.CloseHandle(file); 4: EventModify
public static extern bool CloseHandle(HANDLE hObject);
CloseHandle(p);
CloseHandle(pi.hProcess);
CloseHandle(pi.hThread); 6: OpenEvent Use the DuplicateHandle function to duplicate the handle. Use the CloseHandle function to close the handle. The system closes the handle automatically when the process terminates. The event object is destroyed when its last handle has been closed. 7: ResetEvent
public static extern bool CloseHandle(HANDLE hObject);
CloseHandle(p); 8: SetEvent
public static extern bool CloseHandle(HANDLE hObject);
CloseHandle(p); 9: WriteFile
CloseHandle hFile msi10: MsiCloseHandle
12: MsiOpenDatabase
13: MsiOpenPackageEx
14: MsiOpenProduct
The sample application below demonstrates how to use MsiRecordSetString, MsiOpenDatabase, MsiCreateRecord, MsiCloseHandle, MsiDatabaseOpenView, MsiViewExecute, MsiDatabaseCommit, and MsiViewClose in C# to modify a property value in an MSI database. To run it, simply create a new Windows Console application and replace the code that Visual Studio gives you with the code below. You may have to modify the namespace name. The sample as-is requires a valid MSI database named SETUP.msi, with a property named PROPERTY1 in the Property table, to be located in C:\. You can of course change the path to your MSI database in the calls to ChangeMSIProperty() in Main() and use any existing property you wish.
static extern int MsiCloseHandle(IntPtr hAny);
MsiCloseHandle(msiRecord);
MsiCloseHandle(msiView);
MsiCloseHandle(msiHandle); Structures
public extern static int CloseHandle(IntPtr hObject);
CloseHandle(h);
CloseHandle(h);
CloseHandle(h);
CloseHandle(h);
CloseHandle(h);
CloseHandle(h); Constants
static extern bool CloseHandle(IntPtr hHandle);
CloseHandle(hToken); 23: WINERROR
public const int CO_E_FAILEDTOCLOSEHANDLE = (int)(0x80010138 - 0x100000000); wlanapi24: WlanCloseHandle
[DllImport("Wlanapi", EntryPoint = "WlanCloseHandle")]
public static extern uint WlanCloseHandle([In] IntPtr hClientHandle,
<DllImport("Wlanapi", EntryPoint := "WlanCloseHandle")> _
Public Shared Function WlanCloseHandle(<[In]> ByVal hClientHandle As IntPtr, ByVal pReserved As IntPtr) As UInteger
WlanCloseHandle(handle, IntPtr.Zero);
WlanCloseHandle(handle, IntPtr.Zero) setupapi26: Option Explicit Private Declare Sub CloseHandle Lib “kernel32″ _ ntdll27: NtClose The same functionality as CloseHandle(). See also PROCESS_BASIC_INFORMATION, PROCESSINFOCLASS, OpenProcess, CloseHandle.
CloseHandle(hProc);
CloseHandle(hProc); Enums29: HRESULT
public const int CO_E_FAILEDTOCLOSEHANDLE = unchecked((int)0x80010138);
Public Const CO_E_FAILEDTOCLOSEHANDLE As Integer = CInt(&H80010138UI) user3230: CloseHandle
static extern bool CloseHandle(IntPtr hHandle);
Private Shared Function CloseHandle(ByVal hHandle As IntPtr) As Boolean 31: SB_GETTEXT
private static extern int CloseHandle(
StatusBar.CloseHandle(hProcess); kernel3232: CloseHandle
static extern bool CloseHandle(IntPtr hObject);
Public Shared Function CloseHandle(ByVal hObject As IntPtr) As <MarshalAs(UnmanagedType.Bool)> Boolean
Declare Auto Function CloseHandle Lib "kernel32.dll" (ByVal hObject As IntPtr) As Boolean
Declare Function CloseHandle Lib "kernel32" Alias "CloseHandle" (ByVal hObject As Integer) As Integer
static def CloseHandle(hObject as IntPtr) as bool: For .NET 2.0, consider using Microsoft.Win32.SafeHandles.SafeFileHandle instead. It can be used where IntPtr is used. If you use a SafeFileHandle, do not call CloseHandle as the CLR will close it for you (even if it's already closed).
static extern unsafe bool CloseHandle(
CloseHandle(hMapFile) 33: CreateEvent
CloseHandle(myEventHandle); NOTE: This class needs some changes. The CloseHandle call will destroy the event when the last handle is closed. This makes it hard for one application to "lock" the event while making another wait on it since this class is always closing the handle. An alternative that I found to work is to have the CreateEvent call in the constructor and implement IDisposable by moving the CloseHandle call to the Dispose method.
static extern bool CloseHandle(IntPtr hObject);
CloseHandle( _Handle );
CloseHandle( _Handle );
CloseHandle( _Handle );
CloseHandle( _Handle ); 34: CreateFile
Win32API.CloseHandle(_hMMF);
internal static extern bool CloseHandle(IntPtr hFile);
Win32API.CloseHandle(_hMMF);
internal static extern bool CloseHandle(IntPtr hFile); 36: CreateNamedPipe
private static extern bool CloseHandle(IntPtr handle);
CloseHandle(_handle);
private static extern bool CloseHandle([In] IntPtr hObject);
CloseHandle(handleToSnapshot); 38: DeviceIoControl
Private Declare Function CloseHandle Lib "kernel32" (ByVal hObject As Integer) As Integer
CloseHandle(hdrive)
static extern bool CloseHandle(IntPtr hHandle);
CloseHandle(ptrProcess);
CloseHandle(handle);
CloseHandle(handle); 42: GetFileTime
private static extern bool CloseHandle(
if (ptr !=IntPtr.Zero && ptr.ToInt32() != INVALID_HANDLE_VALUE) CloseHandle(ptr); 43: GetLastError
static extern bool CloseHandle(IntPtr hObject); 44: GetThreadContext
static extern bool CloseHandle(IntPtr hObject);
CloseHandle(hThread); 45: Heap32ListFirst
ToolHelp.CloseHandle(heaplist_h); 46: IsProcessInJob public static extern bool CloseHandle(IntPtr Object);
CloseHandle (Job); 47: OpenFile
CloseHandle(hHandle); //fair to leak if can't close 48: OpenFileMapping
CloseHandle(hHandle); //fair to leak if can't close 49: OpenProcess See also CloseHandle, 50: OpenThread If you use the IntPtr version, use a try/finally block to ensure you call CloseHandle 51: set
static extern bool CloseHandle(IntPtr hObject);
CloseHandle(handle); 52: SetWaitableTimer
static extern bool CloseHandle(IntPtr hObject);
CloseHandle(handle); 53: SuspendThread
CloseHandle(threadHandle);
CloseHandle(threadHandle); // Don't forget close thread handle 54: WriteFileEx
static extern bool CloseHandle(IntPtr hObject);
CloseHandle(hfile); icmp55: IcmpCloseHandle
static extern bool IcmpCloseHandle(IntPtr handle);
Declare Function IcmpCloseHandle Lib "icmp.dll" (IntPtr handle) As Boolean 56: IcmpSendEcho
private static extern bool IcmpCloseHandle(IntPtr handle);
IcmpCloseHandle(icmpHandle);
WINBOOL WINAPI IcmpCloseHandle(HANDLE IcmpHandle);
IcmpCloseHandle(hIcmpFile); secur3257: LsaLogonUser
public static extern int CloseHandle(IntPtr hObject);
OSCalls.CloseHandle(m_hToken); irprops
CloseHandle(firstRadio);
CloseHandle(nextRadio);
static extern bool CloseHandle(IntPtr handle);
/// <param name="phRadio">Pointer to where the first enumerated radio handle will be returned. When no longer needed, this handle must be closed via CloseHandle.</param> wininet59: FtpFindFirstFile
InternetCloseHandle(hFind) ' close the handle. 60: FtpGetFile
[DllImport("wininet.dll", EntryPoint = "InternetCloseHandle")]
public static extern long InternetCloseHandle(IntPtr hInet);
InternetCloseHandle(ftpHandle);
InternetCloseHandle(internetHandle); Cut off search results after 60. Please refine your search. |