summaryrefslogtreecommitdiff
path: root/ext/rpc/com/com.c
Commit message (Collapse)AuthorAgeFilesLines
* moved to pecl by sascha. remove them from head.Sterling Hughes2003-06-251-1362/+0
| | | | | | discussed with harald, will remain in pecl till he has some more time to work on it.
* updating license information in the headers.James Cox2003-06-101-3/+3
|
* Eliminate TSRMLS_FETCH() calls in destroy_op_array() and zend_get_class_entry().Sebastian Bergmann2003-03-261-3/+5
|
* Fix incorrect TSRMLS_CC usage.Wez Furlong2003-02-181-1/+1
| | | | | Fix com_create_guid()
* Implement com_create_guid().Wez Furlong2003-02-181-0/+23
| | | | | | Add a special case for RETVAL_VARIANT when a variant is of type VT_DISPATCH but has a NULL dispatch pointer. This kind of variant is returned by the WindowsInstaller automation interface.
* Implement com_indexed_prop_set() which allows setting of array-like indexed ↵Wez Furlong2003-02-181-0/+73
| | | | | | | | properties on COM objects. It is expected that this function will be transient, waiting for engine-level and then rpc-level support to be implemented so that this can be integrated more completely. I'm committing this now so that others can help develop the msi installer scripts that require this feature.
* Win32 build improvementsZeev Suraski2003-02-171-0/+2
|
* improved reverse lookup of ProgID based on an IDispatch pointerHarald Radi2003-02-111-41/+73
|
* a bunch of fixesHarald Radi2003-02-101-102/+68
|
* byref really means that we want the zval...Wez Furlong2003-02-101-5/+4
|
* Implement com_describeWez Furlong2003-02-101-2/+137
|
* Error reporting leaks and cleanupWez Furlong2003-02-101-3/+3
|
* Fix various little leaks and segfaults.Wez Furlong2003-02-091-22/+15
| | | | | | | | Fix scripts like this: $obj = new COM('Foo'); $obj2 = $obj->get_object(); $obj2->method(); // <-- would segfault here
* ZTS fixes.Ilia Alshanetsky2003-01-191-1/+1
|
* Changed php_error to php_error_docref.Ilia Alshanetsky2003-01-191-9/+9
|
* make layers loadable as self-sustaining php extensionHarald Radi2003-01-161-10/+38
| | | | | which registeres itself in the rpc framework.
* Bump year.Sebastian Bergmann2002-12-311-1/+1
|
* - added a skeleton for new layersHarald Radi2002-07-191-3/+2
| | | | | - a bit cleanup
* ext/rpc/com should work now, but there's still lots of work left.Harald Radi2002-07-181-21/+593
|
* merging parts of the old com extension to the new rpc extensionHarald Radi2002-07-101-11/+417
|
* reflect the new abstraction changes in the demo layerHarald Radi2002-06-091-22/+39
|
* changes related to the latest commit of the zend engineHarald Radi2002-04-221-2/+2
|
* pass function signature in zend_parse_parameters styleHarald Radi2002-03-191-3/+3
| | | | | | | lookup cache works now per signature (not only method name) reviewed resource management # have to learn now ..
* fixed memleaksHarald Radi2002-03-191-13/+13
| | | | | | added method lookup caching pass function signature to hash function callback
* added lookup caching and now make use of the new threadHarald Radi2002-03-191-4/+8
| | | | | safe hashtables (not in cvs right now)
* blahHarald Radi2002-03-161-5/+105
|
* ongoing development ...Harald Radi2002-03-151-1/+5
|
* rpc apstraction moduleHarald Radi2002-03-151-0/+7
does only work with ZendEngine2