I try to use LaunchServices framework. Unfortunately, some functions remain unavailable. For example, function kLSSharedFileListFavoriteItems was imported successfully. However, I can't load function LSSHaredFileListCreate. Code:
unit LSSharedFileList;
interface
uses MacApi.CoreFoundation, MacApi.CocoaTypes;
const
LaunchServicesLib =
'/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/LaunchServices';
type
{$EXTERNALSYM LSSHaredFileListRef}
LSSHaredFileListRef = Pointer;
{$EXTERNALSYM LSSHaredFileListCreate}
function LSSHaredFileListCreate(inAlloccator : CFAllocatorRef; inListType : CFStringRef;
listOptions : CFTypeRef) : LSSHaredFileListRef; cdecl;
{$EXTERNALSYM kLSSharedFileListFavoriteItems}
function kLSSharedFileListFavoriteItems() : CFStringRef; cdecl;
implementation
uses Posix.Dlfcn;
var
_LSSHaredFileListCreate : Pointer = nil;
_kLSSharedFileListFavoriteItems : Pointer = nil;
_libHandle : THandle = 0;
//--------------------------------------------------------------------------------
function LSSHaredFileListCreate(inAlloccator : CFAllocatorRef; inListType : CFStringRef;
listOptions : CFTypeRef) : LSSHaredFileListRef;
begin
if not Assigned(_LSSHaredFileListCreate) then
_LSSHaredFileListCreate := dlSym(_libHandle, MarshaledAString('LSSHaredFileListCreate'));
Result := nil;//
end;
//-----------------------------------------------------------------------
function kLSSharedFileListFavoriteItems() : CFStringRef;
begin
if not Assigned(_kLSSharedFileListFavoriteItems) then
_kLSSharedFileListFavoriteItems := dlSym(_libHandle, MarshaledAString('kLSSharedFileListFavoriteItems'));
Result := CFStringRef(_kLSSharedFileListFavoriteItems^)
end;
//----------------------------
initialization
_libHandle := dlOpen(MarshaledAString(LaunchServicesLib), RTLD_LAZY);
finalization
dlclose(_libHandle)
end.
So, _LSSHaredFileListCreate always nil unlike _kLSSharedFileListFavoriteItems, which has correct address. Maybe, "LSSharedFileListCreate" containt in the other lib? Any idea? Thanks.