HI,
I have tried to interface GPC with the Curses system and I am running into a problem with names:
There are two name in Curses that are different only by their capitalization. One is a variable declared as extern. The other is a function.
example:
/* in C */ extern int COLORS;
extern int colors();
(* in Pascal *)
var COLORS : integer; {can I do this???} procedure colors;c;
I am trying to interface GPC to Curses but I don't know how to pull this one off.
Help!