Как добавить фреймворк LaunchServices (Mac OS) в Delphi xe4?
Я пытаюсь использовать фреймворк LaunchServices. К сожалению, некоторые функции остаются недоступными. Например, функция kLSSharedFileListFavoriteI tems была успешно импортирована. Тем не менее, я не могу загрузить функцию LSSHaredFileListCreate. Код:
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.
Таким образом, _LSSHaredFileListCreate всегда nil в отличие от _kLSSharedFileListFavoriteItems, который имеет правильный адрес. Может быть, "LSSharedFileListCreate" содержится в другой библиотеке? Любая идея? Благодарю.
1 ответ
Ошибка была в названии функции библиотеки.
_LSSHaredFileListCreate := dlSym(_libHandle, MarshaledAString('LSSHaredFileListCreate'));
Правильный код
_LSSHaredFileListCreate := dlSym(_libHandle, MarshaledAString('LSSharedFileListCreate'));
(LSS *h* aredFileListCreate)