private Win32.ITEMIDLIST getAbsoluteItemID(final String path) {
Win32.IShellFolder desktop = getDesktopShellFolder();
Int16Pointer displayNamePtr = nb.createInt16Pointer(path, false);
PointerPointer itemIdPtrPtr = nb.createPointerPointer(1, false);
if (desktop.ParseDisplayName(0, null, displayNamePtr, null, itemIdPtrPtr, null) != WindowsDefs.NOERROR) {
return null;
}
return win32.createITEMIDLIST(itemIdPtrPtr.getAddress(0));
}