Hello,
I would like to create a class which contains three methods, and in each of those methods (let call them MethodA, MethodB and MethodC), I have a specific native code.
My questione now is to know how to declare a variable within the native environment of MethodA, so that it is available also in the native environment of MethodB and MethodC.
Of course, the given variable is not a standard type that can be cast, but in my case a FILE type from string.h.
Thank you,