Well if I have a func like this ( im trying to get it to work with the
simplist case now )
HRESULT test( [ out, ref ] unsigned char *n );
I can call that from PERL like
use Win32::OLE;
use Win32::OLE::Variant;
$obj = Win32::OLE->new( "comobjectname" );
$n = Variant( VT_UI1 | VT_BYREF, 0 );
$ob
gt; > Do you have a VB script showing how it connects to your COM object?
> > Alain
> >
> >
> > -Original Message-
> > From: park [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, September 18, 2001 3:18 AM
> > To: [EMAIL PROTECTED]
> > Subject: [PH
lt;[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Do you have a VB script showing how it connects to your COM object?
> Alain
>
>
> -Original Message-
> From: park [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, September 18, 2001
Do you have a VB script showing how it connects to your COM object?
Alain
-Original Message-
From: park [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, September 18, 2001 3:18 AM
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] COM - accessing pointer variables
I have a method into my COM object
I have a method into my COM object specified as:
HRESULT Get_Version_Str( [ in, out, size_is( size ) ] unsigned char *str,
[ in ] unsigned long size );
now how do I call this from PHP ?
I think that I need to create the arg's as VARIANT but I cant get it to work
:(
please help
park
--
PH