have a code like that:
type TArrayOfPointers = array of Pointer;
...
ParamsMethodDLLecov : TArrayOfPointers;
...
ParamsMethodDLLecov[0] := @my_int_var; //integer var
The question is how to 'go back', to get the value of my_int_var
from ParamsMethodDLLecov[0].
I tried
type Pinteger = ^integer;
ParamsMethodDLLecov[0] as Pinteger
but it doesn't work.
Best Regards,
Mauro Russo.
[Non-text portions of this message have been removed]
-----------------------------------------------------
Home page: http://groups.yahoo.com/group/delphi-en/
To unsubscribe: [EMAIL PROTECTED]
YAHOO! GROUPS LINKS
- Visit your group "delphi-en" on the web.
- To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
- Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

