I'm using Delphi FMX to design a music player for mobile using your BASS library. I use BASS_ChannelGetData to draw spectrum. Everything is OK on Windows and Android, but on iOS, it cannot link BASS_ChannelGetData function from libbass.a into my app (symbol(s) not found for architecture arm64). I don't know why. Is that function epxorted in the library on iOS? The bass unit in Delphi declared the function as follow:
function BASS_ChannelGetData(handle: DWORD; buffer: Pointer; length: DWORD): DWORD; {$IFDEF MSWINDOWS}stdcall{$ELSE}cdecl{$ENDIF}; external bassdll name _PU + 'BASS_ChannelGetData';
Is it correct? Please help me! Thank you.