Re: [xHarbour-developers] Strange compiler behavior using dot

2009-11-27 Thread Enrico Maria Giordano
] Strange compiler behavior using dot Enrico not for xharbour, since . is the name space operator Ok, thank you. 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

Re: [xHarbour-developers] Strange compiler behavior using dot

2009-11-26 Thread Enrico Maria Giordano
] Strange compiler behavior using dot Error E2209 test.c 16: Unable to open include file 'OTEST.xns' Hi Enrico when using an dot, you are trying to reference an function on an name space on left of the dot The actual error was: Error E2209 test.c 16: Unable to open include file 'CVAR.xns

[xHarbour-developers] Strange compiler behavior using dot

2009-11-25 Thread Enrico Maria Giordano
Compiling the following (uncorrect) sample: FUNCTION MAIN() LOCAL cVar := cVar.Test() RETURN NIL I get: Error E2209 test.c 16: Unable to open include file 'OTEST.xns' What does it mean? EMG -- EMAG Software Homepage: http://www.emagsoftware.it The EMG's ZX-Spectrum Page:

Re: [xHarbour-developers] Strange compiler behavior using dot

2009-11-25 Thread Luiz Rafael Culik Guimaraes
: Wednesday, November 25, 2009 1:01 PM Subject: [xHarbour-developers] Strange compiler behavior using dot Compiling the following (uncorrect) sample: FUNCTION MAIN() LOCAL cVar := cVar.Test() RETURN NIL I get: Error E2209 test.c 16: Unable to open include file 'OTEST.xns' What