I have this function:
short cmd_Draw2DPoly(short ThreeDmode, sds_point startpoint[]){...}
and I call it like this in another class
cmd_Draw2DPoly(0, startpoint);
and this error shows up
error C3861: 'cmd_Draw2DPoly': identifier not found, even with argument-dependent lookup
Does anybody know what is wrong?
If you call your member function from another class, you need to pass the object on which to call it.