Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 462 of file pidl.cpp.
Referenced by should_notify().
{ char szData1[MAX_PATH]; char szData2[MAX_PATH]; LPCITEMIDLIST pidltemp1 = pidl1; LPCITEMIDLIST pidltemp2 = pidl2; TRACE("pidl1=%p pidl2=%p\n", pidl1, pidl2); /* * Explorer reads from registry directly (StreamMRU), * so we can only check here */ if (!pcheck(pidl1) || !pcheck (pidl2)) return FALSE; pdump (pidl1); pdump (pidl2); if (!pidl1 || !pidl2) return FALSE; while (pidltemp1->mkid.cb && pidltemp2->mkid.cb) { _ILSimpleGetText(pidltemp1, szData1, MAX_PATH); _ILSimpleGetText(pidltemp2, szData2, MAX_PATH); if (strcmp( szData1, szData2 )) return FALSE; pidltemp1 = ILGetNext(pidltemp1); pidltemp2 = ILGetNext(pidltemp2); } if (!pidltemp1->mkid.cb && !pidltemp2->mkid.cb) return TRUE; return FALSE; }