Search found 249 matches: enddump

Return to advanced search

Re: compile errors

I found this in the fourms... #pragma BEGINDUMP void __get_std_stream() {} void _chdir() {} #pragma ENDDUMP I added that and it compiles but when I run the program I get an error: "The procedure entry point curl_mime_addpart could not be located in the dynamic link library ...
by Jeff Barnes
Thu Apr 11, 2024 3:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: compile errors - send a SMS
Replies: 19
Views: 297

Re: Error '__streams' referenced from K:\FWH\LIB\FIVEH.LIB|HARB

con esto en mi prg, funciono. gracias enrico.

#pragma BEGINDUMP

int _streams;

#pragma ENDDUMP
by carlos vargas
Mon Mar 04, 2024 10:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error '__streams' referenced from K:\FWH\LIB\FIVEH.LIB|HARB
Replies: 15
Views: 2276

Re: Error al Compilar con Fwh 2307 Bcc76 (Solucionado)

... * szText, int nLen ) { hb_retclen( szText, nLen ); } int hb_parldef( int iParam, int iDefValue ) { return hb_parl( iParam, iDefValue ); } #pragma ENDDUMP
by CARLOS ATUNCAR
Fri Jan 26, 2024 11:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error al Compilar con Fwh 2307 Bcc76 (Solucionado)
Replies: 5
Views: 278

Connection to XPlane Flight Simulator

...          End Comm functions                           ****//*****************************************************************************/#pragma ENDDUMP I just added #pragma BEGINDUMP at the beginning and #pragma ENDDUMP at the end. When I try to compile it I get this error Warning W8071 source\\XPlaneConnect.prg ...
by alvaro533
Sun Jun 04, 2023 12:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Connection to XPlane Flight Simulator
Replies: 13
Views: 995

Re: Get real date from the Internet

Antonio Linares wrote:Problem solved. We included the C code inside a pragma BEGINDUMP ENDDUMP and those errors are gone :-)

function Now() is now part of FWH. We are publishing a new version today


Thank you.
by Horizon
Wed Nov 02, 2022 8:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Get real date from the Internet
Replies: 55
Views: 4466

Re: Get real date from the Internet

Problem solved. We included the C code inside a pragma BEGINDUMP ENDDUMP and those errors are gone :-)

function Now() is now part of FWH. We are publishing a new version today
by Antonio Linares
Wed Nov 02, 2022 8:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Get real date from the Internet
Replies: 55
Views: 4466

Re: BCC 7 32 Bit \INCLUDE

hi Antonio, there are some differences if you want to use it as a standalone C file or inside a PRG using #pragma BEGINDUMP ... ENDDUMP Ok, begin to understand can you use it for now inside the PRG ? not sure if HB_FUNC() is working ... but i get no Warning when compile :D i do "add" ...
by Jimmy
Mon Oct 17, 2022 8:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: BCC 7 32 Bit \INCLUDE
Replies: 9
Views: 343

Re: BCC 7 32 Bit \INCLUDE

Dear Jimmy,

there are some differences if you want to use it as a standalone C file or inside a PRG using #pragma BEGINDUMP ... ENDDUMP

can you use it for now inside the PRG ?
by Antonio Linares
Mon Oct 17, 2022 6:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: BCC 7 32 Bit \INCLUDE
Replies: 9
Views: 343

Re: hb_base64 link

Antonio Linares wrote:Dear Enrico,

> you can solve the problem with #ifdef __XHARBOUR__, can't you?

going to check if we can wrap a pragma BEGINDUMP ENDDUMP using it


I dont know...
by Enrico Maria Giordano
Mon Sep 12, 2022 8:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: hb_base64 link
Replies: 57
Views: 3482

Re: hb_base64 link

Dear Enrico,

> you can solve the problem with #ifdef __XHARBOUR__, can't you?

going to check if we can wrap a pragma BEGINDUMP ENDDUMP using it
by Antonio Linares
Mon Sep 12, 2022 8:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: hb_base64 link
Replies: 57
Views: 3482

Re: IE

... void test( const char * x, const char * y) //, void * t ) { MessageBox( 0, x, y, 0 ); } HB_FUNC( TEST ) { hb_retnl( ( HB_LONG ) test ); } #pragma ENDDUMP
by Natter
Thu May 26, 2022 12:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: IE
Replies: 39
Views: 1680

Re: unrecoverable error 9015 hb_vmdo()

... char * szPar1, const char * szPar2) { hb_errRT_BASE( 0, 0, "intentando resolver un error interno", "probando", 0 ); } #pragma ENDDUMP
by Edman
Thu Oct 07, 2021 5:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: unrecoverable error 9015 hb_vmdo()
Replies: 33
Views: 1772

Re: problema con DrawBitmap() usando tCodeBars

... ) // hDC, nWidth, nHeight { hb_retnl( ( LONG ) CreateCompatibleBitmap( ( HDC ) hb_parnl( 1 ), hb_parnl( 2 ), hb_parnl( 3 ) ) ); } #pragma ENDDUMP
by rterraz
Mon Mar 15, 2021 12:02 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: problema con DrawBitmap() usando tCodeBars
Replies: 10
Views: 1023

Re: Funciones C en Harbour

... #include <math.h> HB_FUNC( C_2EXP ) { long long n, nResult; n = hb_parnll(1); nResult = pow(2,n); hb_retnll(nResult); } #pragma ENDDUMP Desde tu programa la llamaria asi: n2 := C_2EXP(4) ? "n2", n2 Saludos, George
by George
Mon Feb 08, 2021 4:21 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Funciones C en Harbour
Replies: 19
Views: 1645

Re: Unrecoverable error 6005: Exception error

Antonio, Modifica esta función de esta forma e inclúyela en tu PRG dentro de una sección #pragma BEGINDUMP ... #pragma ENDDUMP HB_FUNC( NPTRWORD ){   #ifndef _WIN64      hb_retnl( * ( WORD * ) hb_parnl( 1 ) );   #else      hb_retnll( * ( ...
by Antonio Mart.
Thu May 14, 2020 6:22 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Unrecoverable error 6005: Exception error
Replies: 5
Views: 504
Next

Return to advanced search