I've tried to use ISOLATOR_SET_VARIABLE in C++ environment, but it doesn't work well I thought.
In your example code, "m_array" is one-demensional array.
Person* person = new Person();
int arr_set[5] = {1, 2, 3, 4, 5};
ISOLATOR_SET_VARIABLE(person, m_array, &arr_set[0]); |
I want to control private variables of two-demensional array.
How to use API ?