Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re^3: Win32::API passing a parameter by reference issue

by karamorf (Initiate)
on Oct 17, 2008 at 18:04 UTC ( [id://717829]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Win32::API passing a parameter by reference issue
in thread Win32::API passing a parameter by reference issue

I was experiencing this same issue of the function call only happening once and then the next time the script would just end. Though it looks like we might have been experiencing it for different reasons figured I would post my solution since this is the first google result I got, maybe someone else will find it helpful :)

Anywise, I was defining my function like this:

my $getIndivPages = new Win32::API('c:\WINNT\system32\ALISE_Domain_nav.dll', 'GetPageNum', 'PPPP', 'N');

And it work work the first time I did $getInivPages->Call(...), however I had this in a loop to be executed n times and it would only be executed once. So after much frustration I tried a random thing and redefined my function like this:

my $getIndivPages = Win32::API->new('c:\WINNT\system32\ALISE_Domain_nav.dll', 'void __stdcall GetPageNum(long num, char *con, char *tit, char *url)');

And it worked! (though I couldn't believe that's what was wrong after wasting many hours), anywise going through the loop the function would be executed the intended amount of times. Seems weird for it to be able to work just by changing how the function is defined but whatever.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://717829]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (5)
As of 2024-04-23 20:46 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found