Shell32ILIsEqual Method
Tests whether two ITEMIDLIST structures are equal in a binary comparison.
Namespace: DevCase.Win32.NativeMethodsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[DllImportAttribute("Shell32.dll", ExactSpelling = true, SetLastError = true)]
public static bool ILIsEqual(
IntPtr pidl1,
IntPtr pidl2
)
<DllImportAttribute("Shell32.dll", ExactSpelling := true, SetLastError := true>]
Public Shared Function ILIsEqual (
pidl1 As IntPtr,
pidl2 As IntPtr
) As Boolean
Dim pidl1 As IntPtr
Dim pidl2 As IntPtr
Dim returnValue As Boolean
returnValue = Shell32.ILIsEqual(pidl1,
pidl2)
public:
[DllImportAttribute(L"Shell32.dll", ExactSpelling = true, SetLastError = true)]
static bool ILIsEqual(
IntPtr pidl1,
IntPtr pidl2
)
[<DllImportAttribute("Shell32.dll", ExactSpelling = true, SetLastError = true)>]
static member ILIsEqual :
pidl1 : IntPtr *
pidl2 : IntPtr -> bool
No code example is currently available or this language may not be supported.
- pidl1 IntPtr
-
The first ITEMIDLIST structure.
- pidl2 IntPtr
-
The second ITEMIDLIST structure.
Boolean
Returns
if the two structures are equal,
otherwise.