int SampleClass::doWork(TCustomType _dataCall, void* _reserved){
...
}
I want to store the value of both parameters (dataCall and reserved) in order to use them in other function. I can't pass this values as parameters to other function.
Just want to store them (maybe into a class variables) to use them later.
How to do it? How to declare this both varibles into class and how to do the assignament?