Hi,
I am using an old C library (c-isam) which has 2 functions with the same name(!) :
isindexinfo(int,struct keydesc*,int) and
isindexinfo(int,struct dictinfo*,int)
I can't get my c++ complier to compile my program which uses these functions.
First I need to declare the function, but by declaring one, the second causes confilict.
I need both as they do different things.
Can anyone help?
I am using an old C library (c-isam) which has 2 functions with the same name(!) :
isindexinfo(int,struct keydesc*,int) and
isindexinfo(int,struct dictinfo*,int)
I can't get my c++ complier to compile my program which uses these functions.
First I need to declare the function, but by declaring one, the second causes confilict.
I need both as they do different things.
Can anyone help?