Searched refs:ILIsParent (Results 1 – 7 of 7) sorted by relevance
/reactos/modules/rostests/apitests/shell32/ |
H A D | ItemIDList.cpp | 241 ok_int(ILIsParent(NULL, p1, FALSE), FALSE); // NULL is always false in START_TEST() 242 ok_int(ILIsParent(p1, NULL, FALSE), FALSE); // NULL is always false in START_TEST() 243 ok_int(ILIsParent(NULL, NULL, FALSE), FALSE); // NULL is always false in START_TEST() 244 ok_int(ILIsParent(p1, p1, FALSE), TRUE); // I'm my own parent in START_TEST() 245 ok_int(ILIsParent(p1, p1, TRUE), FALSE); // Self is not immediate in START_TEST() 246 ok_int(ILIsParent(p1, p2, FALSE), TRUE); // Grandchild in START_TEST() 247 ok_int(ILIsParent(p1, p2, TRUE), FALSE); // Grandchild is not immediate in START_TEST() 251 ok_int(ILIsParent(p1, p2, TRUE), TRUE); // Immediate child in START_TEST() 254 ok_int(ILIsParent(p1, p2, FALSE), FALSE); in START_TEST()
|
/reactos/dll/win32/shell32/shelldesktop/ |
H A D | CChangeNotifyServer.cpp | 434 if (ILIsParent(pidl, pidl1, FALSE) || in ShouldNotify() 435 (pidl2 && ILIsParent(pidl, pidl2, FALSE))) in ShouldNotify() 443 ILIsParent(pidl, pidl1, TRUE) || in ShouldNotify() 444 (pidl2 && ILIsParent(pidl, pidl2, TRUE))) in ShouldNotify()
|
/reactos/dll/win32/shell32/ |
H A D | shell32.spec | 22 23 stdcall ILIsParent(ptr ptr long)
|
H A D | CDefView.cpp | 2823 if (ILIsParent(pidl1, pidl2, TRUE)) in ILIsParentOrSpecialParent()
|
/reactos/dll/win32/shell32/wine/ |
H A D | pidl.c | 611 BOOL WINAPI ILIsParent(LPCITEMIDLIST pidlParent, LPCITEMIDLIST pidlChild, BOOL bImmediate) in ILIsParent() function
|
/reactos/sdk/include/psdk/ |
H A D | shlobj.h | 2514 BOOL WINAPI ILIsParent(_In_ PCIDLIST_ABSOLUTE, _In_ PCIDLIST_ABSOLUTE, BOOL);
|
/reactos/modules/rostests/winetests/shell32/ |
H A D | shlfolder.c | 147 TESTNAMED(ILIsParent); in init_function_pointers()
|