* On Sat, 3 Sep 2005, Saulius Krasuckas wrote:
- On Sat, 3 Sep 2005, Filip Navara wrote:
- Saulius Krasuckas wrote:
/* This test shows that Windows doesn't allocate a new pidlLast, but returns a pointer into * pidlTestFile (In accordance with MSDN). */
- todo_wine{ok (ILFindLastID(pidlTestFile) == pidlLast,
- todo_wine{ok (pILFindLastID(pidlTestFile) == pidlLast, "SHBindToParent doesn't return the last id of the pidl param!\n");}
It would be wise to check if pILFindLastID != NULL.
Yeah, it would be, but then I need to think about where the check should reside: there or in the init-block? If in the latter, then after this code gets executed:
pILFindLastID = (void *)GetProcAddress(hShell32, (LPCSTR)16);
... I doubt we still were receiving NULL.
Nevermind, Flilip. Ice-cream cooled out my mind. Check you mention will be placed just before trying to link the function by its ordinal.