Re: [Harbour] Re: GPF oemtoansi()

2009-08-17 Thread Przemyslaw Czerpak
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

Re: [Harbour] Re: GPF oemtoansi()

2009-08-17 Thread Przemyslaw Czerpak
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

[Harbour] Re: GPF oemtoansi()

2009-08-17 Thread Itamar Lins
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

[Harbour] Re: GPF oemtoansi()

2009-08-17 Thread Itamar Lins
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