2008/9/3 Sisyphus <[EMAIL PROTECTED]>:
> How, therefore, can I get at the 'hashsize' function from an Inline::C
> script (or an XSub) on Win32 ?

To answer what Jan didn't say:
You will have no luck getting the address of not exported functions in dll's.

The dll's is mapped into the exe address space, and for all exported functions
the entry points (exe specific GetProcAddress) are calculated, for not exported
functions not.

You might have luck adding the offset manually from a known function
by checking its addresses via nm or objdump, but this is very fragile and
is only specific for this very build. (dumpbin on MSVC)
-- 
Reini Urban
http://phpwiki.org/ http://murbreak.at/

Reply via email to