in reply to Re: Import a DLL from C# to Perl
in thread Import a DLL from C# to Perl
If this is just about utilizing user32.dll's MessageBoxA function, then the Inline::C cookbook contains this example.
Win32 can also do that:
use Win32;; Win32::MsgBox( "Hi, from perl\nWhat can I do for you today?", MB_ICONQ +UESTION );;
|
|---|