string s = \"おはよう\"; wstring ws = FUNCTION(s, ws);
How would i assign the contents of s to ws?
Searched google and used some techniques but
string s = "おはよう"; is an error.
string s = "おはよう";
You should use wstring directly:
wstring ws = L"おはよう";