From here, did you:
2. Link with libconio.a (add -lconio parameter to linker).
Best wishes,
Michael
Me idiot. Thank you so much. It works now. Well, kinda. It display _NOCURSOR as a _NORMALCURSOR and _NORMALCURSOR as a half _SOLIDCURSOR and _SOLIDCURSOR as _NOCURSOR. :?
Anyone experianced the same ? Do i still do something wrong ?
When i open conio2.h and change this values:
#define _NOCURSOR 0 /**< no cursor */
#define _SOLIDCURSOR 100 /**< cursor filling whole cell */
#define _NORMALCURSOR 20 /**< cursor filling 20 percent of cell heigh */
to:
//#define _NOCURSOR 100 /**< no cursor */
//#define _SOLIDCURSOR 99 /**< cursor filling whole cell */
//#define _NORMALCURSOR 10 /**< cursor filling 20 percent of cell height */
It finaly works properly. Still it's weired !
BTW: Talking about -lconio parameter. Is it right to put it to Settings -> Compiler -> Linker tab -> Other linker options field ?
And when ever i want to put several parameters is the "-" enough to separate them from each others or is a "," necessary ?
regards
Deamon