Search found 44 matches: stderr

Return to advanced search

Re: Cual es la clase ?

┌────────────────────────────────────────────────────────────────────────────┐ ?FiveWin for xHarbour 23.07 - Jul. 2023 Harbour development power │▄ ?(c) FiveTech 1993-2023 for Microsoft Windows 9X/NT/200X/ME/XP/Vista/7/8/10 │█ └───────────────────────────────────────────────────────────────────────...
by Antonio Linares
Mon Feb 26, 2024 7:31 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cual es la clase ?
Replies: 10
Views: 552

Re: Cual es la clase ?

┌────────────────────────────────────────────────────────────────────────────┐ ?FiveWin for xHarbour 23.07 - Jul. 2023 Harbour development power │▄ ?(c) FiveTech 1993-2023 for Microsoft Windows 9X/NT/200X/ME/XP/Vista/7/8/10 │█ └────────────────────────────────────────────────────────────────────────...
by CARLOS ATUNCAR
Mon Feb 26, 2024 2:15 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cual es la clase ?
Replies: 10
Views: 552

Re: link error

this : Error: Unresolved external '_HB_FUN_FREOPEN_STDERR' referenced from RBDESIGN.OBJ Error: Unresolved external '_HB_FUN_HB_COMPILEFROMBUF' referenced from RBDESIGN.OBJ Error: Unresolved external '_HB_FUN_HB_HRBRUN' referenced from RBDESIGN.OBJ Error: Unable to perform link im using xharbour bina...
by NWKL
Wed Feb 14, 2024 6:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: link error
Replies: 17
Views: 601

Re: Conectarse con mariaDB

... = "your_database"; // Connect to MySQL if (mysql_real_connect(conn, host, user, password, database, 0, NULL, 0) == NULL) { fprintf(stderr, "Error connecting to MySQL: %s\n", mysql_error(conn)); mysql_close(conn); exit(EXIT_FAILURE); } // Execute a simple query if (mysql_query(conn, ...
by Antonio Linares
Mon Jan 01, 2024 2:55 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: Conectarse con mariaDB
Replies: 4
Views: 10783

Re: help on a GPF situation

... effect: any calls to HB_TRACE that were left by the compiler and which have a level lower or equal to HB_TR_LEVEL will print its arguments on STDERR. EXAMPLES ======== HB_TR_LEVEL HB_TR_LEVEL Description compilation run-time ----------- ----------- ---------------------------------------- ...
by Antonio Linares
Sat Oct 23, 2021 4:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: help on a GPF situation
Replies: 26
Views: 3402

Hacking Android (pipes) stdout and stderr redirection

https://codelab.wordpress.com/2014/11/03/how-to-use-standard-output-streams-for-logging-in-android-apps/ https://www.bignerdranch.com/blog/hijacking-for-fun-and-profit/ I have found this great code from Oscar Hernández Suárez: https://groups.google.com/d/msg/harb...
by Antonio Linares
Mon Mar 04, 2019 7:23 am
 
Forum: Utilities / Utilidades
Topic: Hacking Android (pipes) stdout and stderr redirection
Replies: 0
Views: 527

Re: Crear function para Script de Harbour

EJECUTAR( MemoRead( "ejemplo.prg" ) )

y elimina esta línea:
// FReOpen_Stderr( "comp.log", "w" )

y modifica esta línea asi:
oHrb = HB_CompileFromBuf( cCode, .T., "-n", "-Ic:\fwh\include", "-Ic:\harbour\include" )
by Antonio Linares
Sun Aug 12, 2018 5:56 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Crear function para Script de Harbour
Replies: 31
Views: 3502

Re: Changing the place of "comp.log" file in scripts.

Birol, In FWH\source\function\harbour.prg in function Execute() please comment out this line: // FReOpen_Stderr ( "comp.log", "w" ) and modify this one: oHrb = HB_CompileFromBuf( cCode, .T. , "-n", "-I" + cFWheaders, "-I" + cHBheaders ) these fixes w...
by Antonio Linares
Tue Jul 31, 2018 4:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Changing the place of "comp.log" file in scripts.
Replies: 3
Views: 676

Re: MSVC 2017 Try

... en vez de usar hb_parnl() hemos de usar hb_parnll() y en vez de hb_retnl() usar hb_retnll() Modifica esta línea: FILE * _iob[] = { stdin, stdout, stderr }; asi: static FILE * _iob[] = { stdin, stdout, stderr };
by Antonio Linares
Sat Apr 15, 2017 6:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MSVC 2017 Try
Replies: 67
Views: 7881

Crear cCode para script de Harbour

Hola, Como puedo crear el cCode para utilizarlo con la funcion execute que viene con Harbour y donde deberia ir este codigo en mi aplicacion (Dentro como una funcion o desde un archivo externo) function Execute( cCode, ... ) local oHrb, cResult, bOldError, uRet local cFWheaders := If( lIsDir( "...
by Compuin
Mon Jan 02, 2017 3:34 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Crear cCode para script de Harbour
Replies: 13
Views: 2043

Re: Need CURL syntax with fivewin using HBCURL LIB?

Here it is: /* * libcurl 'easy' API - Harbour header. * * Copyright 2008 Viktor Szakats (vszakats.net/harbour) * originally based on: * Copyright 2005 Luiz Rafael Culik Guimaraes <luiz at xharbour.com.br> * * This program is free software; you can redistribute it and/or modify * it under the t...
by ADutheil
Tue Nov 01, 2016 3:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Need CURL syntax with fivewin using HBCURL LIB?
Replies: 10
Views: 4849

Re: FWH 16.03 32 BIT

Try it this way:

FILE * _iob[ 3 ];

_iob[ 0 ] = stdin;
_iob[ 1 ] = stdout;
_iob[ 2 ] = stderr;
by Antonio Linares
Fri May 06, 2016 8:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 16.03 32 BIT
Replies: 118
Views: 25451

Re: FWH64

Hi, After changing the version of the Harbour, and change png.lib . The error still persists ┌────────────────────────────────────────────────────────────────────────────┐ │ FWH 64 for Harbour 14.08 (MSVC++) Aug.2014 Harbour development power │▄ │ (c) FiveTech, 1993-2014 for Microsoft Windows 9X/NT/...
by Francisco Valério
Fri Apr 29, 2016 12:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH64
Replies: 110
Views: 25308

Re: FWH64 error

Sr. Antonio, ────────────────────────────────────────────────────────────────────────────┐ │ FWH 64 for Harbour 14.08 (MSVC++) Aug.2014 Harbour development power │▄ │ (c) FiveTech, 1993-2014 for Microsoft Windows 9X/NT/200X/ME/XP/Vista/7/8 │█ └────────────────────────────────────────────────────────...
by MGA
Fri Apr 29, 2016 11:49 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: FWH64 error
Replies: 4
Views: 879

Re: FWH64

Antonio, Really my installation had a problem, but after reinstalling , this error is generated ┌────────────────────────────────────────────────────────────────────────────┐ │ FWH 64 for Harbour 14.08 (MSVC++) Aug.2014 Harbour development power │▄ │ (c) FiveTech, 1993-2014 for Microsoft Windows 9X...
by Antonio Linares
Thu Apr 28, 2016 10:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH64
Replies: 110
Views: 25308
Next

Return to advanced search