I want to access a variable that is declared as such
class xx
{
private:
CRITICAL_SECTION m_csResponse;
}
this variable I want to access from a method in another diff class in a different file(the variable being updated).What should I do in the other class?