I have a function TransformString(wchar_t* inputString,...)
that modifies inputString, which somewhere along the way calls helper function Help(wstring* string)
.
I would like to pass wchar_t* inputString
to Helper function so that function can modify it. What's the best way to do it?