Hi there,
Thanks to you both for the quick response. yes, the $output variable was a typo. As for the naming convention, I got that from an exceprt in "Win32 Perl Programming", here's the code again:
#!usr/bin/perl use Win32::API; my $filename="C:/Program Files/America Online 9.0g/aol.exe"; my $apiobject = new Win32::API("C:/Documents and Settings/Mdaviesie/De +sktop/dver_1.3/fileversion.dll", "GetFileVersionTxt", 'PP','I') or di +e "Failed to acquire API: $^E"; #Set some memory aside for the returned value my $string="\x00" x 1024; #Call the function in the dll $apiobject->Call($filename,$string); #Remove the unused padding in the string my $final = ($string =~/(.*?)\x00/); print "\$final - $final";
A bit of background, all the dll is supposed to return is the version number of the named file. The function I want to call looks like this:
INT GetFileVersionTxt(STRING sFile, out STRING sVersion)
The dll returns a version number (I was using the fileversion modules before, but their output is slightly different to what this dll returns - which is why I have to try to work with it). If anybody could provide me with a pointer as to why this is returning the error message,
Thanks again,
Jonathan

In reply to Re^2: Win32::API giving a program error by Anonymous Monk
in thread Win32::API giving a program error by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.