RE: Argument passing between perl and a C function.

2005-06-07 Thread Siegfried Heintze
: Siegfried Heintze [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 07, 2005 11:50 AM To: 'Japerlh' Cc: beginners@perl.org Subject: RE: Argument passing between perl and a C function. J, I assume you are (1) successful at calling this function calculate from C/C++ and (2) implementing this in a

RE: Argument passing between perl and a C function.

2005-06-07 Thread Siegfried Heintze
you, for example. Good luck, Siegfried -Original Message- From: Japerlh [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 07, 2005 1:23 AM To: Siegfried Heintze Cc: beginners@perl.org Subject: Re: Argument passing between perl and a C function. Sieg, Thanks for your help. I did not catch what

Re: Argument passing between perl and a C function.

2005-06-07 Thread Japerlh
D] > Sent: Friday, June 03, 2005 12:05 AM > To: Siegfried Heintze > Cc: beginners@perl.org > Subject: Re: Argument passing between perl and a C function. > > Siegfried, > > Thank you. > I am sure it's a dispatch interface. > > > On 6/3/05, Siegfrie

RE: Argument passing between perl and a C function.

2005-06-06 Thread Siegfried Heintze
ailto:[EMAIL PROTECTED] Sent: Friday, June 03, 2005 12:05 AM To: Siegfried Heintze Cc: beginners@perl.org Subject: Re: Argument passing between perl and a C function. Siegfried, Thank you. I am sure it's a dispatch interface. On 6/3/05, Siegfried Heintze <[EMAIL PROTECTED]> wrote:

Re: Argument passing between perl and a C function.

2005-06-02 Thread J aperlh
nsistently call custom interfaces. I would > not want to try to do so directly in perl. > > Siegfried > > -Original Message- > From: J aperlh [mailto:[EMAIL PROTECTED] > Sent: Thursday, June 02, 2005 7:59 PM > To: Si

RE: Argument passing between perl and a C function.

2005-06-02 Thread Siegfried Heintze
Heintze Cc: beginners@perl.org Subject: Re: Argument passing between perl and a C function. --- Thanks for you guys help. There is an application written in C language by my colleague. We are not allowed to share this application fo

Re: Argument passing between perl and a C function.

2005-06-02 Thread J aperlh
uses a special data structure called a SAFEARRAY to pass arrays so > it could be that your function is looking for scalars, not arrays. > > Perhaps there is some documentation? > > S > > -Original Message- > From: J aperlh [mailto:[EMAIL PROTECTED] > Sent: Wednesda

RE: Argument passing between perl and a C function.

2005-06-02 Thread Siegfried Heintze
erhaps there is some documentation? S -Original Message- From: J aperlh [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 01, 2005 8:44 PM To: beginners@perl.org Subject: Argument passing between perl and a C function. Argument passing between perl and C function. There is C function in a OLE

Argument passing between perl and a C function.

2005-06-01 Thread J aperlh
Argument passing between perl and C function. There is C function in a OLE server: What kind of variable should I pass to this function? # BOOL Calculate(BSTR* names, double* values, short number_of_names); I tried the foll