Registriert seit: 1. Feb 2018
3.691 Beiträge
Delphi 11 Alexandria
|
AW: PIDL und der Font-Ordner - geht nicht
11. Mär 2020, 14:29
Hab vielleicht doch noch was passendes... ILCreateFromPath
Delphi-Quellcode:
// falls das Windows.pas nicht hat:
function ILCreateFromPath(pszPath: LPCWSTR): PItemIDList; stdcall
external shell32 name 'ILCreateFromPathW';
// der eigentliche aufruf:
PathPIDL := ILCreateFromPath(pWideChar(Path));
Zitat:
Call ILFree to release the ITEMIDLIST when you are finished with it.
Geändert von KodeZwerg (11. Mär 2020 um 14:33 Uhr)
|