Search found 158 matches: libcurl

Return to advanced search

Re: Compiler with MSVC y HARBOUR

... I have seen that I need the following files additionally: c:\Apache24\bin\libssl-1_1-x64.dll c:\Apache24\bin\libcrypto-1_1-x64.dll c:\Apache24\bin\libcurl-x64.dll Perhaps we could then create a Fivewin test program that checks all files and settings. Possibly also implements necessary security ...
by Otto
Fri Apr 19, 2024 6:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Compiler with MSVC y HARBOUR
Replies: 2
Views: 62

Re: compile errors

scratch the last message.
I forgot to update libcurl.dll

No errors now.

By adding this code, does it affect anything?

Code: Select all  Expand view

#pragma BEGINDUMP
void __get_std_stream() {}
void _chdir() {}
#pragma ENDDUMP
 
by Jeff Barnes
Thu Apr 11, 2024 4:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: compile errors - send a SMS
Replies: 19
Views: 253

compile errors - send a SMS

Hi all, I'm trying to compile a sample of using curl with Twilio. I've linked in hbcurl.lib, libcurl.lib and hbcurl.ch I get the following errors. Anyone know what I'm missing? Turbo Incremental Link 6.80 Copyright (c) 1997-2017 Embarcadero Technologies, Inc.Error: ...
by Jeff Barnes
Thu Apr 11, 2024 2:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: compile errors - send a SMS
Replies: 19
Views: 253

Re: How to include hbCurl?

... in a .mak file, the following: echo $(HBDIR)\lib\hbtipssl.lib >> msvc.tmp echo $(HBDIR)\lib\hbcurl.lib >> msvc.tmp echo $(HBDIR)\lib\libcurl.lib >> msvc.tmp I do my builds with Harbor and MSVC It works fine. Also include the libcurl.dll It also works for 64 bit with those libraries ...
by Marc Venken
Fri Mar 08, 2024 10:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to include hbCurl?
Replies: 13
Views: 2923

Re: How to include hbCurl?

HI,
you can generate C code from the CURL command line
adding "--libcurl filename.c" to the end of the command line

below is an example:
curl http://example.com --libcurl example.c

look at the link
https://everything.curl.dev/libcurl/libcurl
by vensanto
Wed Mar 06, 2024 5:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to include hbCurl?
Replies: 13
Views: 2923

Re: How to include hbCurl?

Otto wrote:Hello friends,

How to include hbCurl? Is it working in xHarbour, too?

Best regards,
Otto


Hi Otto,

Yes, it is working with xHarbour too. You have to link hbcurl.lib and libcurl.lib. Then you must have libcurl.dll in the same folder of the EXE (or in the path, of course).
by Enrico Maria Giordano
Sun Mar 03, 2024 11:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to include hbCurl?
Replies: 13
Views: 2923

Re: How to include hbCurl?

... in a .mak file, the following: echo $(HBDIR)\lib\hbtipssl.lib >> msvc.tmp echo $(HBDIR)\lib\hbcurl.lib >> msvc.tmp echo $(HBDIR)\lib\libcurl.lib >> msvc.tmp I do my builds with Harbor and MSVC It works fine. Also include the libcurl.dll It also works for 64 bit with those libraries ...
by TimStone
Sun Mar 03, 2024 12:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to include hbCurl?
Replies: 13
Views: 2923

Re: Subuir un fichero a un servidor

... por vuestra colaboración Ya consigo utilizar curl para la comunicación con el servidor, he tenido que copiar en la ruta del ejecutabale las dlls LIBCURL.DLL y MSVCR120.DLL Usando la libreria ya consigo enviar datos en modo texto, pero sigo atascado en el envio del PDF Este es el codigo que utilizo ...
by miarcod
Thu Nov 30, 2023 5:37 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Subuir un fichero a un servidor
Replies: 18
Views: 2266

Re: De *.C Para *.Obj en BCC74 no funciona más.

Enrico Maria Giordano wrote:You have to link libcurl.dll.


OK!! Funcionó! Super many thanks.

Code: Select all  Expand view

echo %hdirl%\hbcurl.lib + >> b32.bc
echo %hdirl%\libcurl.lib + >> b32.bc
 


Regards, saludos.
by karinha
Mon Nov 20, 2023 3:12 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: De *.C Para *.Obj en BCC74 no funciona más.
Replies: 84
Views: 39459

Re: De *.C Para *.Obj en BCC74 no funciona más.

You have to link libcurl.dll.
by Enrico Maria Giordano
Mon Nov 20, 2023 2:49 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: De *.C Para *.Obj en BCC74 no funciona más.
Replies: 84
Views: 39459

Re: De *.C Para *.Obj en BCC74 no funciona más.

Please download it again, I forgot libcurl.dll. :-) http://www.xharbour.org/files/download/windows/xhb10276_bcc770.zip master Enrico: Lines 42, Functions/Procedures 2, pCodes 83Embarcadero C++ 7.70 for Win32 Copyright (c) ...
by karinha
Mon Nov 20, 2023 2:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: De *.C Para *.Obj en BCC74 no funciona más.
Replies: 84
Views: 39459

Re: De *.C Para *.Obj en BCC74 no funciona más.

I'm working to include hbcurl.ch, libcurl.lib and libcurl.dll in the distribution packages.
by Enrico Maria Giordano
Sun Nov 19, 2023 10:48 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: De *.C Para *.Obj en BCC74 no funciona más.
Replies: 84
Views: 39459

Re: De *.C Para *.Obj en BCC74 no funciona más.

Thank you. You have to generate libcurl.lib from

Code: Select all  Expand view
implib -a libcurl.lib libcurl.dll


And then link both hbcurl.lib and libcurl.lib to your EXE. And put libcurl.dll in the same directory of your EXE or in the windows\system directory.
by Enrico Maria Giordano
Sat Nov 18, 2023 3:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: De *.C Para *.Obj en BCC74 no funciona más.
Replies: 84
Views: 39459

Re: TUrl()/TIPClientHttp() devuelve NOCONNET

echo %fwh%\lib\libcurl.lib + >> b32.bc
by jnavas
Tue Sep 12, 2023 6:30 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: TUrl()/TIPClientHttp() devuelve NOCONNET
Replies: 14
Views: 1489
Next

Return to advanced search