I have an existing function, and I'd like to add a parameter and set a default value for it so it won't affect other modules that use it.
BOOL myFunc(int A, CString& strTest);
Initializing it to NULL or 0 gives me an error message. How do I initialize strTest in my func declaration?