2025-02-03 10:18 UTC+0100 Aleksander Czajczynski (hb fki.pl)

* contrib/hbcurl/core.c
    ! reverted static keyword

  * ChangeLog.txt
    ! formatting
This commit is contained in:
Aleksander Czajczynski
2025-02-03 10:17:58 +01:00
parent bb8204e16c
commit af085af261
2 changed files with 13 additions and 6 deletions

View File

@@ -7,16 +7,23 @@
Entries may not always be in chronological/commit order.
See license at the end of file. */
2025-02-03 10:18 UTC+0100 Aleksander Czajczynski (hb fki.pl)
* contrib/hbcurl/core.c
! reverted static keyword
* ChangeLog.txt
! formatting
2025-02-03 09:09 UTC+0100 Antonio Linares (alinares/at/fivetechsoft.com)
* contrib/hbcurl/core.c
! HB_CURLOPT_WRITEFUNCTION implemented support
Required to use AI Ollama from Harbour so the tokens are visible to the user
as they are generated
! HB_CURLOPT_WRITEFUNCTION implemented support
Required to use AI Ollama from Harbour so the tokens are visible to the user
as they are generated
2025-02-03 08:42 UTC+0100 Detlef Riekenberg
* src/common/hbver.c
! Open Watcom versions numbers started with "1.0" after the latest commercial Watcom 11.0c.
TinyC has no 1.0 release yet and is currently at 0.9.28rc.
! Open Watcom versions numbers started with "1.0" after the latest commercial
Watcom 11.0c. TinyC has no 1.0 release yet and is currently at 0.9.28rc.
2025-02-01 08:37 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
+ config/android/clang.mk

View File

@@ -531,7 +531,7 @@ static int hb_curl_debug_callback( CURL * handle, curl_infotype type, char * dat
return 0;
}
size_t static hb_curl_writefunction_callback( void *buffer, size_t size, size_t nmemb, void *Cargo )
static size_t hb_curl_writefunction_callback( void *buffer, size_t size, size_t nmemb, void *Cargo )
{
PHB_CURL hb_curl = ( PHB_CURL ) Cargo;