You can define as inline a function with the dllexport attribute. In this case, the function is always instantiated and exported, whether or not any module in the program references the function. The ...
inline int add(int a,int b,int c,int d,int e,int f){ return a+b+c+d+e+f; inline int sub(int a,int b,int c,int d,int e,int f){ return a-b-c-d-e-f; inline int mul(int a ...