Hy...

How can I get back an reference value from an function.
I call an COM-function witch is described as followed :

int GetCount(Value 1, Value 2, return Value 3)

Well... 'till now it look like this

$obj = new COM("comobject");
$count = -1;
$error = -1;
$error = $obj -> GetCount(1,1,&$count);

I get back the int value ob GetCount, thats OK.
But how can I get back Value 3 ???

Help would be appreciated...

Thanks
Thomas Weidner



-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to