Wez Furlong
bfdb85d1f0
Correct a copy-n-paste bug. Spotted by Michael Sisolak <msisolak@yahoo.com>
2002-10-31 08:23:55 +00:00
Harald Radi
84c9395f18
@ fixes bugs #19156 and #19544 (memleak)
2002-10-17 16:21:00 +00:00
Harald Radi
7bacb2fcc4
@ changed the VARIANT class to be able to create arrays of all types
...
@ and not only VT_VARIANT
2002-10-16 23:56:33 +00:00
Harald Radi
afb75a45e9
fixes bugs #19156 and #19544
2002-10-02 12:53:51 +00:00
Wez Furlong
cfb5002e0b
Implement com_invoke_ex, which allows the user to specify the invoke kind
...
flags, so that custom invocations can be made.
Tidy up code for com_propget and com_propset, so that it can work with
objects as well as resources.
# This code is from a couple of months ago, and has been hanging around
# on my windows dev box; I'm not entirely sure where I needed com_invoke_ex,
# but the additions to propget and propset are useful.
2002-08-26 13:36:35 +00:00
Harald Radi
2007b1216a
removed a possible NULL pointer referencing inside an error handler
2002-08-05 23:41:25 +00:00
Harald Radi
01dee775d1
found a memleak
2002-08-05 23:38:35 +00:00
Derick Rethans
8967b5725b
Unify error messages
2002-06-26 07:24:47 +00:00
Harald Radi
5a6a5bc609
removed CONST_EFREE_PERSISTENT so that andi can commit his patch
...
# _now_ it should work
2002-06-21 10:43:45 +00:00
Harald Radi
5dbd205bf7
removed CONST_EFREE_PERSISTENT so that andi can commit his patch
...
# second try
2002-06-21 10:35:33 +00:00
Harald Radi
ed1b5c0388
removed CONST_EFREE_PERSISTENT so that andi can commit his patch
...
# this is one of these nice patches where you only remove something :)
# i still don't get what CONST_EFREE_PERSISTENT should have done
# there but the cvs log says that i can blame zeev :-P
2002-06-21 10:02:26 +00:00
Harald Radi
d1b01b92ab
added wez and ordered names alphabetically
2002-05-31 09:43:22 +00:00
Harald Radi
acc1021f0d
#forgot something
2002-05-30 23:17:48 +00:00
Harald Radi
d3ca5abab7
@ Added missing AddRef() calls in the COM extension. This should
...
@ fix weird behaviour (in particular with ADODB). (Harald)
# waah, this suxx
2002-05-30 23:07:23 +00:00
Wez Furlong
762effcf60
Add documentation comment for properties in com_print_typeinfo
2002-05-21 22:44:10 +00:00
Wez Furlong
fbf920d9a3
Enhance com_print_typeinfo.
...
The main expected use is like this, for figuring out what methods
are allowed for a COM object:
$ie = new COM("InternetExplorer.Application");
// Prints class definition for IE object
com_print_typeinfo($ie, "InternetExplorer.Application", false);
// Prints class definition for default IE event handler
com_print_typeinfo($ie, "InternetExplorer.Application", true);
2002-05-21 22:41:45 +00:00
Wez Furlong
8a53a89a94
Correct usage of convert_to_string_ex which is not allowed to zval*
2002-05-21 20:57:04 +00:00
Wez Furlong
c05834fbce
Reformat some comments.
2002-05-21 20:51:31 +00:00
Wez Furlong
e2b9f0d964
Fix a flag, remove an old comment.
2002-05-21 20:46:08 +00:00
Wez Furlong
e04d6ca9f7
- Make sure that COM and VARIANT resources are returned as resources
...
rather than longs.
- Make the IDispatch implementation a bit more generic (and
fix my mess of pointers).
- Add new com_message_pump() function that acts like an interruptible
usleep() that processes COM calls/events.
- Add new com_print_typeinfo() function for "decompiling" the typeinfo
for an interface into PHP script. This is useful for generating a
skeleton for use as an event sink.
- Add new com_event_sink() function for sinking events from COM
objects. Usage is like this:
<?php
class IEEventSinker {
var $terminated = false;
function ProgressChange($progress, $progressmax) {
echo "Download progress: $progress / $progressmax\n";
}
function DocumentComplete(&$dom, $url) {
echo "Document $url complete\n";
}
function OnQuit() {
echo "Quit!\n";
$this->terminated = true;
}
}
$ie = new COM("InternetExplorer.Application");
$sink =& new IEEventSinker();
com_event_sink($ie, $sink, "DWebBrowserEvents2");
$ie->Visible = true;
$ie->Navigate("http://www.php.net ");
while(!$sink->terminated) {
com_message_pump(4000);
}
$ie = null;
?>
2002-05-21 18:58:11 +00:00
Harald Radi
e47a667cc9
integrating wez's patch
2002-05-20 15:35:57 +00:00
Wez Furlong
fc964e88d3
Added generic COM wrapper for PHP objects.
2002-05-20 01:31:48 +00:00
Harald Radi
37b9089bfa
this should finally fix bug #14353
2002-05-15 17:59:48 +00:00
Harald Radi
fe84a29b3f
remove temporary resources immediately
...
return value fix
#thanks to alan for 'remote debugging'
2002-05-02 13:37:31 +00:00
Harald Radi
e72caee650
RETURN_NULL() is defined with braces while RETURN_TRUE
...
and RETURN_FALSE are defined without.
seems not very consistent ?
2002-04-29 17:20:15 +00:00
Harald Radi
667a0841f3
functions returned FALSE in case of error and the oo api returned NULL.
...
make them both behave equal (return NULL, as FALSE can be a valid value).
2002-04-29 15:50:30 +00:00
Harald Radi
da9dd9acc9
updated TODO list
2002-04-27 15:47:18 +00:00
Harald Radi
a380af2247
don't set CLSCTX_REMOTE_SERVER if NULL is passed as servername
2002-04-27 10:17:46 +00:00
Harald Radi
51241dba94
this patch should fix a bug where intermediate comvals were not
...
released before they were freed. this caused outproc com server
to belive that they still referenced even when the php process
already terminated.
2002-04-26 18:20:45 +00:00
Derick Rethans
4ec1a03653
- Fix for bug #14353
2002-04-25 06:37:22 +00:00
Harald Radi
f246e23799
whitespace fixes
2002-04-18 10:05:47 +00:00
Alan Brown
ad9f90a223
Missing break; causes fallthrough which actually causes heap corruption in the debugging version despite being just plain wrong. Also placed a default "Unavailable" message when the object does not populate the EXCEPINFO structure. Also removed a minor memory leak.
2002-04-18 01:56:29 +00:00
Alan Brown
bbb133f292
When V_BSTR() is NULL, we pass a NULL pointer into php_OLECHAR_to_char() which reports an exception. Better to map a NULL string pointer to ZVAL_NULL.
2002-04-18 01:52:07 +00:00
Harald Radi
3a1ebd4f51
@ fixed a bug that caused php to crash in php_COM_get_ids_of_names() (Harald, Paul)
2002-03-15 20:48:26 +00:00
Sebastian Bergmann
38933514e1
Update headers.
2001-12-11 15:32:16 +00:00
Hartmut Holzgraefe
41d93ca3fd
proto fixes
2001-12-05 22:38:49 +00:00
Egon Schmid
90e15c04c9
Fixed two protos.
2001-12-02 09:29:09 +00:00
Alan Brown
8ee38d9d75
Not all components populate every field in the ExceptInfo structure. Thus we sometimes would try to convert NULL strings and see php_OLECHAR_to_char errors while displaying Exception information. This version is a little smarter about the member derefencing and the resulting error string.
2001-11-09 14:20:28 +00:00
Harald Radi
93a58dbed2
no message
2001-11-01 20:53:41 +00:00
Harald Radi
73dbeb6f6f
fixed wrong constant definition
2001-10-18 08:25:39 +00:00
Harald Radi
d5f1b1b60f
rename module entry
2001-10-17 12:50:12 +00:00
Harald Radi
c232516005
fixed unicode bug
2001-10-17 12:48:26 +00:00
Stig Bakken
689252082c
* zend_module_entry change: apino, debug and zts are moved first,
...
see README.EXTENSIONS file for upgrade help.
@Introduced extension version numbers (Stig)
2001-10-11 23:33:59 +00:00
Sascha Schumann
0c79e85ede
fix declaration
2001-10-05 12:22:12 +00:00
Harald Radi
27744e892a
no message
2001-10-04 18:24:44 +00:00
Harald Radi
d1199bd2c7
fixed Z_* conversion errors
2001-09-26 22:52:17 +00:00
Frank M. Kromann
448e9d49cc
Fixing Win32 build...
2001-09-26 03:24:19 +00:00
Harald Radi
23c65b60a0
no message
2001-09-25 23:39:50 +00:00
Jeroen van Wolffelaar
c033288573
Back-substitute for Z_* macro's. If it breaks some extension (the script isn't optimal, it parses for example var->zval.value incorrect) please let me know.
2001-09-25 21:58:48 +00:00
Harald Radi
a491db4e2d
removed VARIANT module and put the VARIANT class into
...
the COM module.
also fixed a few bugs.
2001-09-24 15:56:18 +00:00