For pennance to the Monastery, I hammered out the sample that I was searching for.

// test.cpp : Defines the entry point for the console application. // /* --Contents of "test.pl" sub ezsub($) { my $param = shift; return qq(Parameter passed in is -$param-\n); } */ #include "stdafx.h" #include <windows.h> #include <perlez.h> int _tmain(int argc, _TCHAR* argv[]) { char cmd[80]; char buffer[200]; PERLEZHANDLE perl = PerlEzCreate("test.pl", NULL); if(!perl) return 1; int nInteger = 234; if(PerlEzCall(perl,"ezsub",buffer,sizeof(buffer),"i", nInteger)==0) printf("1 - %s\n", buffer); sprintf(cmd, "ezsub"); char *szString = "456"; if(PerlEzCall(perl,cmd,buffer,sizeof(buffer),"s",szString)==0) printf("2 - %s\n", buffer); sprintf(cmd,"ezsub('%s')",szString); if(PerlEzEvalString(perl,cmd,buffer,sizeof(buffer))==0) printf("3 - %s\n", buffer); PerlEzDelete(perl); return 0; }
Output
1 - Parameter passed in is -234- 2 - Parameter passed in is -456- 3 - Parameter passed in is -456-
...And please forgive me for posting C code in this sacred place of Perl.

In reply to Re^3: Simple PerlEz Sample by choeppner
in thread Simple PerlEz Sample by choeppner

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.