i find it interesting that using PPM supplied with ActiveState's Perl, none of these PM's showed up.
Inline.pm looks like a good solution if we were rolling out our packages (internal term, not Perl packages) to machines that we knew had C compilers on them. in the Fortune 5000 world, i think this does not have a high probability. :) very interesting, though and i'll have to see if i can put into some development stuff.
FFI looks to almost be more clunky than Win32::API. look at this chunk of code from the module's examples section:
$clib_file = ($^O eq "MSWin32") ? "MSVCRT40.DLL" : "-lc"; $clib = DynaLoader::dl_findfile($clib_file); $strlen = DynaLoader::dl_find_symbol($clib, "strlen"); $n = FFI::call($strlen, "cIp", $my_string); DynaLoader::dl_free_file($clib);

looks like a lot of work IMO.
C::Dynalib looks good, but it appears that it still requires some knowledge of where the functions you want to call are located.
it looks like for our use, Win32::API might just be the best option. we will be using several registry calls which are fairly well supported already, and after some design talks it looks like we'll only need to call one method through Win32::API, which shouldn't be too bad. if it were larger scale, Inline.pm looks very good.
thanks for the excellent info!

In reply to (Guildenstern) REx2: Anyone use Win32::API? by Guildenstern
in thread Anyone use Win32::API? by Guildenstern

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.