Hi,
Thanks for the response.
It was a good start for me. But Win32::API documentation says
"With this module you can import and call arbitrary functions from Win32's Dynamic Link Libraries (DLL), without having to write an XS extension. Note, however, that this module can't do anything (parameters input and output is limited to simpler cases), and anyway a regular XS extension is always safer and faster."
The application I'm gona test is kind of complex. I may need PerlXS.
For example: one of the interface method (to read a file) signature is:
int FileSystemInputStream::Read(void* destination,
size_t size,
Common::LogContext& log,
int logAndExceptionLevel)
How to call this method in Perl to test its functionality?
Can u pls thro light on PerlXS? Is it possible to use the same PerlXS on both Windows(dll) & Unix(dso)?
Thanks a lot!