library header incompatible with c++
Brought to you by:
lhanson
The header file(s) of this project are incompatible
with C++ programs.
What needs to be done is adding
#ifdef __cplusplus
extern "C" {
#endif
just before the function declarations and
#ifdef __cplusplus
}
#endif
just after them. Maybe also put the keyword
extern
just in front of every function.
The changed file is attached.
Logged In: YES
user_id=1086589
Here the fix in diff format