Hola,
Tal vez podrías hacer uso de esta o una función parecida para averiguar si cuentas con determinada librería o, mejor dicho, si una determinada librería cuenta con una función en concreto:
Código Delphi
[-]
function ExisteFuncion(const dll,
funcion: string) : boolean;
var
aDll: THandle;
begin
Result := false;
if LoadLibrary(PChar(dll)) = 0 then
Exit;
aDll := GetModuleHandle(PChar(dll));
if aDll <> 0 then
Result := GetProcAddress(aDll,
PChar(funcion)) <> nil;
end;