Re: Accessing C/C++ Dlls using perl

2003-06-20 Thread Ben Crane
zentara, I'm almost exclusively going to go with inline::c since it adds the power of c and perl together (just the combination I need!) :) Problem is, getting the inline.pm module to work. I don't have nmake and have never needed it. I've always put the modules into the correct dir structure

Re: Accessing C/C++ Dlls using perl

2003-06-20 Thread Beau E. Cox
- Original Message - From: Ben Crane [EMAIL PROTECTED] To: zentara [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, June 19, 2003 10:43 PM Subject: Re: Accessing C/C++ Dlls using perl zentara, I'm almost exclusively going to go with inline::c since it adds the power of c

Re: Accessing C/C++ Dlls using perl

2003-06-20 Thread Jenda Krynicky
From: Ben Crane [EMAIL PROTECTED] I'm almost exclusively going to go with inline::c since it adds the power of c and perl together (just the combination I need!) :) Problem is, getting the inline.pm module to work. I don't have nmake and have never needed it. I've always put the modules

Re: Accessing C/C++ Dlls using perl

2003-06-20 Thread Beau E. Cox
- Original Message - From: Jenda Krynicky [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, June 20, 2003 12:35 AM Subject: Re: Accessing C/C++ Dlls using perl From: Ben Crane [EMAIL PROTECTED] I'm almost exclusively going to go with inline::c since it adds the power of c

RE: Accessing C/C++ Dlls using perl

2003-06-20 Thread NYIMI Jose (BMB)
Beau, Wouldn't Win32::API be much easier to use than Inline::C ? José. -Original Message- From: Beau E. Cox [mailto:[EMAIL PROTECTED] Sent: Friday, June 20, 2003 1:14 PM To: Jenda Krynicky; [EMAIL PROTECTED] Subject: Re: Accessing C/C++ Dlls using perl - Original Message

Re: Accessing C/C++ Dlls using perl

2003-06-20 Thread Beau E. Cox
: Accessing C/C++ Dlls using perl Beau, Wouldn't Win32::API be much easier to use than Inline::C ? José. -Original Message- From: Beau E. Cox [mailto:[EMAIL PROTECTED] Sent: Friday, June 20, 2003 1:14 PM To: Jenda Krynicky; [EMAIL PROTECTED] Subject: Re: Accessing C/C++ Dlls using perl

Re: Accessing C/C++ Dlls using perl

2003-06-20 Thread Ben Crane
No worries ;) I'll just install it and to hell with windows :) __ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Accessing C/C++ Dlls using perl

2003-06-20 Thread zentara
On Thu, 19 Jun 2003 23:24:04 +0200, [EMAIL PROTECTED] (Tassilo Von Parseval) wrote: And finally the same in XS. It's not the slightest bit harder than with Inline::C. The only difference with the XS code below is that I changed the return values in that the functions now return false when

Re: Accessing C/C++ Dlls using perl

2003-06-19 Thread Ben Crane
Beau, Thanx, I hunting the info down now, seems quite complex. I'm wondering whether it might not be better to have a crack at this in C? Have you found perlXS to be difficult to implement? Ben __ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month!

Re: Accessing C/C++ Dlls using perl

2003-06-19 Thread Tassilo von Parseval
On Thu, Jun 19, 2003 at 01:37:09AM -0700 Ben Crane wrote: Thanx, I hunting the info down now, seems quite complex. I'm wondering whether it might not be better to have a crack at this in C? The difference between doing XS in C and in C++ isn't all that rough. See Using XS With C++ in

Re: Accessing C/C++ Dlls using perl

2003-06-19 Thread Jenda Krynicky
From: Ben Crane [EMAIL PROTECTED] I've tried this question in a forum dedicated to MITAB dlls (it's a series of c/c++ libraries designed to access MapInfo data) to no avail. My question is: can you access and use c/c++ dll's in perl?? At the moment, I have a MapBasic script pulling

Re: Accessing C/C++ Dlls using perl

2003-06-19 Thread Beau E. Cox
- Original Message - From: Ben Crane [EMAIL PROTECTED] To: Beau E. Cox [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Wednesday, June 18, 2003 10:37 PM Subject: Re: Accessing C/C++ Dlls using perl Beau, Thanx, I hunting the info down now, seems quite complex. I'm wondering whether

Re: Accessing C/C++ Dlls using perl

2003-06-19 Thread Beau E. Cox
- Original Message - From: Ben Crane [EMAIL PROTECTED] To: Beau E. Cox [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Wednesday, June 18, 2003 10:37 PM Subject: Re: Accessing C/C++ Dlls using perl Beau, Thanx, I hunting the info down now, seems quite complex. I'm wondering whether

Re: Accessing C/C++ Dlls using perl

2003-06-19 Thread Ben Crane
Thanx all, I might need to come back to you guys at a later date if I have problems. I'm going through the docs now and trying to put together a very simple example to play with... Thanx for the advice. I might go through with perl after all since it would be more useful when putting data

Re: Accessing C/C++ Dlls using perl

2003-06-19 Thread zentara
On Thu, 19 Jun 2003 01:37:09 -0700 (PDT), [EMAIL PROTECTED] (Ben Crane) wrote: Beau, Thanx, I hunting the info down now, seems quite complex. I'm wondering whether it might not be better to have a crack at this in C? Have you found perlXS to be difficult to implement? Inline::C and Swig are

Re: Accessing C/C++ Dlls using perl

2003-06-19 Thread Tassilo von Parseval
On Thu, Jun 19, 2003 at 01:42:29PM -0400 zentara wrote: On Thu, 19 Jun 2003 01:37:09 -0700 (PDT), [EMAIL PROTECTED] (Ben Crane) wrote: Thanx, I hunting the info down now, seems quite complex. I'm wondering whether it might not be better to have a crack at this in C? Have you found perlXS to

Accessing C/C++ Dlls using perl

2003-06-18 Thread Ben Crane
Hi all, I've tried this question in a forum dedicated to MITAB dlls (it's a series of c/c++ libraries designed to access MapInfo data) to no avail. My question is: can you access and use c/c++ dll's in perl?? At the moment, I have a MapBasic script pulling information from MapINfo and dumping

Re: Accessing C/C++ Dlls using perl

2003-06-18 Thread Shaun Bramley
[EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, June 18, 2003 7:07 AM Subject: Accessing C/C++ Dlls using perl Hi all, I've tried this question in a forum dedicated to MITAB dlls (it's a series of c/c++ libraries designed to access MapInfo data) to no avail. My question is: can you

Re: Accessing C/C++ Dlls using perl

2003-06-18 Thread Beau E. Cox
- Original Message - From: Ben Crane [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, June 18, 2003 1:07 AM Subject: Accessing C/C++ Dlls using perl Hi all, I've tried this question in a forum dedicated to MITAB dlls (it's a series of c/c++ libraries designed to access