in reply to Problems with Win32::API module
My guess is that $LLHandle is first 'introduced' within your code by the call of Call($LLHandle) and thus is undefined. The use of strictures, i.e.
#!/usr/bin/perl use strict; use warnings;
would have caught that though.
Unless $LLHandle is exported per default by Win32::API, which I don't know. But I saw no mention of $LLHandle in Win32::API's documentation.
Perhaps you accidentally forgot to include some relevant code?
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Problems with Win32::API module
by Anonymous Monk on May 01, 2007 at 12:48 UTC | |
by tye (Sage) on May 01, 2007 at 16:17 UTC |