mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-22 22:49:37 +02:00
* Add macro translation
git-svn-id: trunk@40781 -
This commit is contained in:
parent
59cd593331
commit
be42c5b97d
@ -1191,6 +1191,8 @@ const
|
||||
GNUTLS_TL_NO_DUPLICATE_KEY = 1 shl 3;
|
||||
GNUTLS_TL_GET_COPY = 1 shl 4;
|
||||
|
||||
procedure gnutls_transport_set_int(s : tgnutls_session_t; r : cint);
|
||||
|
||||
procedure LoadGnuTLS(alib : String = '');
|
||||
procedure FreeGnuTLS;
|
||||
Function GnuTLSloaded : Boolean;
|
||||
@ -1201,6 +1203,12 @@ implementation
|
||||
uses
|
||||
SysUtils, dynlibs;
|
||||
|
||||
procedure gnutls_transport_set_int(s : tgnutls_session_t; r : cint);
|
||||
|
||||
begin
|
||||
gnutls_transport_set_int2(s,r,r);
|
||||
end;
|
||||
|
||||
var
|
||||
hlib : tlibhandle;
|
||||
LoadedLibName : String;
|
||||
|
Loading…
Reference in New Issue
Block a user