S
sumaniitb
We have a third party application coded in C++ which has hook for a
function that I need to implement. Is there a way such that I can
implement it in C and give my code as a library. I cannot use the
'extern C' since the application is built without my header file.
Example:
ThirdParty.cpp
extern void fun2();
fun1(){
....
fun2();
}
My code is supposed to implement fun2() in C.
function that I need to implement. Is there a way such that I can
implement it in C and give my code as a library. I cannot use the
'extern C' since the application is built without my header file.
Example:
ThirdParty.cpp
extern void fun2();
fun1(){
....
fun2();
}
My code is supposed to implement fun2() in C.