Desktop Functions: Smart Device Functions:
|
Search Results for "DestroyIcon" in [All]shell321: ExtractIcon
[DllImport("user32.dll", EntryPoint="DestroyIcon", SetLastError=true)]
private static unsafe extern int DestroyIcon(IntPtr hIcon);
DestroyIcon(ptr);
DestroyIcon(ptr);
<DllImport("user32.dll", EntryPoint:="DestroyIcon", SetLastError:=True)> _
Function DestroyIcon(ByVal hIcon As IntPtr) As Integer
DestroyIcon(ptr)
DestroyIcon(ptr)
[DllImport("user32.dll", EntryPoint="DestroyIcon", SetLastError=true)]
private static unsafe extern int DestroyIcon(IntPtr hIcon);
DestroyIcon(ptr);
DestroyIcon(ptr);
<DllImport("user32.dll", EntryPoint:="DestroyIcon", SetLastError:=True)> _
Function DestroyIcon(ByVal hIcon As IntPtr) As Integer
DestroyIcon(ptr)
DestroyIcon(ptr)
public static extern int DestroyIcon(IntPtr hIcon);
Win32.DestroyIcon(shinfo.hIcon);
DestroyIcon(sii.hIcon);
DestroyIcon(hIcon) user325: DestroyIcon
static extern bool DestroyIcon(IntPtr hIcon);
Private Shared Function DestroyIcon(ByVal hIcon As IntPtr) As Boolean
DestroyIcon(hicon); 6: LoadImage
private static extern int DestroyIcon(IntPtr hIcon);
DestroyIcon(ptr); |