ablmf has asked for the wisdom of the Perl Monks concerning the following question:

I'm using perl to invoke an ActiveX Control. As the control output data by return a memory address, I need to read data at the address directly. Is there way to do it?

Replies are listed 'Best First'.
Re: How to read from a memory address
by samtregar (Abbot) on Jul 19, 2006 at 17:14 UTC
    There are several. I'd use Inline::C, since it should be easy to write a little C function to read whatever data you need to access. If you're not a C hacker then you might find Devel::Pointer useful, although I've never used it.

    -sam

      Thanks a lot. Inline::C is just what I need. But I think Devel::Pointer is not for this kind of problem.