Desktop Functions: Smart Device Functions:
|
Search Results for "FreeLibrary" in [All]winscard
private extern static void FreeLibrary(IntPtr handle) ;
FreeLibrary(handle) ; advapi322: Tyde
kernel32
FreeLibrary(dll_hInst)
private static extern bool FreeLibrary(IntPtr hModule);
FreeLibrary(hMod);
FreeLibrary(hMod) 5: FreeLibrary
static extern bool FreeLibrary(IntPtr hModule);
<DllImport("kernel32.dll", SetLastError:=True, EntryPoint:="FreeLibrary")> _
Public Shared Function FreeLibrary(ByVal hModule As IntPtr) As Boolean
Private Declare Function FreeLibrary Lib "kernel32" (ByVal hLibModule As Long) As Long
if (FreeLibrary(hExe) == false) {
return FreeLibrary(this.handle);
static extern bool FreeLibrary(IntPtr hModule); ole32 |