On Mon, 17 Aug 2009, Itamar Lins wrote:
> I found the problem.
> Colision again Hwgui function.
> Piece of code hwgui\source\drawtext.c
> #ifndef __XHARBOUR__
> HB_FUNC( OEMTOANSI )
> {
>char *buffer = hb_parc( 1 );
>OemToChar( buffer, buffer );
>hb_retc( buffer );
> }
> HB_FUNC( ANSITO
On Mon, 17 Aug 2009, Itamar Lins wrote:
> Best way hbmk2 inform oemtoansi() not found. Because hbmk2 compile fine now
> show error, is not my function. HB_ prefix resolve the problem.
1-st it's not hbmk2 job but used linker which is called by hbmk2.
HBMK2 cannot have such functionality.
2-nd AFAI
I found the problem.
Colision again Hwgui function.
Piece of code hwgui\source\drawtext.c
#ifndef __XHARBOUR__
HB_FUNC( OEMTOANSI )
{
char *buffer = hb_parc( 1 );
OemToChar( buffer, buffer );
hb_retc( buffer );
}
HB_FUNC( ANSITOOEM )
{
char *buffer = hb_parc( 1 );
CharToOem( buffe
Best way hbmk2 inform oemtoansi() not found. Because hbmk2 compile fine now
show error, is not my function. HB_ prefix resolve the problem.
Best Regards,
Itamar M. Lins Jr.
"Przemyslaw Czerpak"
escreveu na mensagem news:20090817200647.ga16...@uran.home.aster.pl...
> On Mon, 17 Aug 2009, Itamar