in reply to Re: Call a function from DLL
in thread Call a function from DLL
Thank you for your suggestion
I just tried to use it but I got
"Can't call method "Call" without a package or object reference at script.pl line 9."
#!usr/bin/perl use strict; use warnings; use Win32::API; my $function=Win32::API->Import( 'D:\Cleware\USBaccess.dll', 'int FCWInitObject()', ); my $return = $function->Call();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Call a function from DLL
by holli (Abbot) on Jul 15, 2019 at 11:19 UTC | |
|
Re^3: Call a function from DLL
by holli (Abbot) on Jul 15, 2019 at 10:55 UTC |