Quote Originally Posted by motobizio View Post
and subsequently calling this function like this:
funct1_addr (L"arg1, arg2");
funct2_addr (L""string1","string2"");
Why are you enclosing the parameters in quotes? That is not needed! The function calls should look as follows:
Code:
funct1_addr (arg1, arg2); 
funct2_addr ("string1","string2");