C linking C++ static functions -


my question simple;

is possible c linking (extern "c") on c++ static class functions? - without using wrappers.

no can't write wrapper function.

class x { public:     static void f(); };  extern "c" void call_x_f() {     x::f(); } 

Comments

Popular posts from this blog

sql - VB.NET Operand type clash: date is incompatible with int error -

SVG stroke-linecap doesn't work for circles in Firefox? -

python - TypeError: Scalar value for argument 'color' is not numeric in openCV -