mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-07-13 21:46:01 +02:00
15 lines
202 B
ObjectPascal
15 lines
202 B
ObjectPascal
program test1;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
OpenSSL;
|
|
|
|
begin
|
|
if InitSSLInterface then
|
|
Writeln('Success')
|
|
else
|
|
Writeln('Load failed, missing functions: ',OpenSSL_unavailable_functions);
|
|
end.
|
|
|