ILIsParent(3w)
NAME
ILIsParent (SHELL32.23)
SYNOPSIS
BOOL ILIsParent ( LPCITEMIDLIST pidlParent, LPCITEMIDLIST pidlChild, BOOL bImmediate )
DESCRIPTION
Verifies that pidlParent is indeed the (immediate) parent of pidlChild.
PARAMS
pidlParent [In] .
pidlChild [In] .
bImmediate [In] only return TRUE if the parent is the direct parent of
the child.
RETURNS
TRUE if the parent ItemIDlist is a complete part of the child
ItemIdList, FALSE otherwise.
NOTES
parent = a/b, child = a/b/c -> TRUE, c is in folder a/b child = a/b/c/d -> FALSE if bImmediate is TRUE, d is not in folder a/b child = a/b/c/d -> TRUE if bImmediate is FALSE, d is in a subfolder of a/b
IMPLEMENTATION
Exported by ordinal only. Use GetProcAddress(3w) to obtain a pointer to
the function.
Implemented in "build/buildd-wine-unstable_1.1.32-1+b1-amd64-KnxYu0/wine-unstable-1.1.32/build32/dlls/shell32/pidl.c".
- Debug channel "pidl".