-----Messaggio Originale----- Da: "Viktor Szakáts" <harbour...@syenar.hu>
A: "Harbour Project Main Developer List." <harbour@harbour-project.org>
Data invio: lunedì 3 agosto 2009 1.49
Oggetto: Re: [Harbour] Array access at C level


> Can I ask the reason for this Clipper compatibility break?

It's not a Clipper compatibility break, as Clipper
uses _par*() function names. Harbour is still
compatible with these.

Maybe I'm missing something but the following sample doesn't work as well:

FUNCTION MAIN()

   LOCAL aArray := { "Test 1" }

   ? TEST( aArray )

   INKEY( 0 )

   RETURN NIL


#pragma BEGINDUMP

#include "hbapi.h"


HB_FUNC( TEST )
{
   hb_retc( _parc( 1, 1 ) );
}

#pragma ENDDUMP

Call to function '_parc' with no prototype in function HB_FUN_TEST

EMG

--
EMAG Software Homepage:     http://www.emagsoftware.it
The EMG's ZX-Spectrum Page: http://www.emagsoftware.it/spectrum
The Best of Spectrum Games: http://www.emagsoftware.it/tbosg
The EMG Music page: http://www.emagsoftware.it/emgmusic
_______________________________________________
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to