in reply to Re: Win32::API question
in thread Win32::API question
should be changed tomy $Api = new Win32::API("fileversion.dll", "GetFileVersionTxt", P, P) +;
ormy $Api = new Win32::API("fileversion.dll", "GetFileVersionTxt", ['P', + 'P'], 'I');
The third parameter is suposed to be a string or array ref of the input parameters, and the forth is a string for the return value.my $Api = new Win32::API("fileversion.dll", "GetFileVersionTxt", 'PP', + 'I');
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Win32::API question
by Ninthwave (Chaplain) on Jun 02, 2004 at 19:36 UTC |