diff options
| author | Wez Furlong <wez@php.net> | 2002-05-21 18:58:11 +0000 |
|---|---|---|
| committer | Wez Furlong <wez@php.net> | 2002-05-21 18:58:11 +0000 |
| commit | e04d6ca9f7b0e553b1e978b31f0325ed048d5ea2 (patch) | |
| tree | 91c56c40f0888392d45ecb52fd7b01b875fb80ea /sapi/activescript/scriptengine.cpp | |
| parent | 8a6f6fca1d63eb15ba73b9a70fdb94938aa515e3 (diff) | |
| download | php-git-e04d6ca9f7b0e553b1e978b31f0325ed048d5ea2.tar.gz | |
- 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;
?>
Diffstat (limited to 'sapi/activescript/scriptengine.cpp')
0 files changed, 0 insertions, 0 deletions
