Is it possible to include a C file
in the project having C++ files?
for example in a c++ function
if i want to call a function
from that C file ,how can i do that?
whether i have to declare my C function
as a member of the c++ function class?
please help me.....
Comments
#ifdef __cplusplus
extern "C" {
#endif
/* C function prototypes & external varables */
#ifdef __cplusplus
}
#endif
Hope This Helps,
Justin