1// Shell API functions 2Use Windows.pkg 3Use DLL.pkg 4 5External_Function PathFileExists "PathFileExistsA" shlwapi.dll ; 6 String sPath ; 7Returns Integer // Boolean 8 9External_Function PathIsRelative "PathIsRelativeA" shlwapi.dll ; 10 String sPath ; 11Returns Integer // Boolean 12 13External_Function PathRemoveExtension "PathRemoveExtensionA" shlwapi.dll ; 14 Address aPath ; 15Returns Integer // void 16 17External_Function PathRemoveFileSpec "PathRemoveFileSpecA" shlwapi.dll ; 18 Address aPath ; 19Returns Integer