Hi all,
Using the Win32::API lib, I want to import the following C function:
USHORT RscIoCheck
(ULONG ulConnectionHandle
,ULONG ulSessionHandle
,SHORT *pnIoHandle
,VOID *pvReplyBuffer
,USHORT *puReplySize
);
which is found in the "Rscw32.dll". To import it, I have the following script:
use Win32::API 0.40;
my $sFuncRscIoCheck = new Win32::API('Rscw32', 'RSCCHK', 'IIPPP', 'I')
+;
When I use it, I call the function as follow:
my $sReturn;
my $sIoHandle = RSC_IO_NOWAITED;
my $sCheckAll = RSC_IO_CHECK_ALL;
$sReturn = $sFuncRscIoCheck->Call($sConnectionHandle,
$sSessionHandle,
$sCheckAll,
$sReplyBuffer,
$sReplySize);
I'm expecting a return value of '17' but when I print the "$sReturn", I got '33685510'.
If I do the following:
my $sReturn = pack('S', 0);
$sReturn = $sFuncRscIoCheck->Call($sConnectionHandle,
$sSessionHandle,
$sCheckAll,<br>
$sReplyBuffer,
$sReplySize);
$sReturn = unpack('S', $sReturn);
print "My Return is : $sReturn\n";
the "$sReturn" value is set to '13107' and this value can (and probably will) change if I reboot the PC.
Is it possible to handle the USHORT correctly with the Win32::API lib?
Any idea?
Thanks,
ptk
Note: Even if the return value is incorrect, the function seems to work!
Edit by BazB: add code tags.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.