summaryrefslogtreecommitdiff
path: root/ext/com_dotnet/com_saproxy.c
Commit message (Collapse)AuthorAgeFilesLines
* Happy New YearXinchen Hui2013-01-011-1/+1
|
* - Year++Felipe Pena2012-01-011-1/+1
|
* Fixed bug #60167 (Crash / memory corruption in ext/com_dotnet) (Timm Friebe).Dmitry Stogov2011-11-251-3/+3
|
* - Year++Felipe Pena2011-01-011-1/+1
|
* Changed the structure of op_array.opcodes. The constant values are moved ↵Dmitry Stogov2010-04-201-5/+5
| | | | from opcode operands into a separate literal table
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* MFH: Fix compiler warningsKalle Sommer Nielsen2009-05-191-9/+7
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* MFH: nuketh C++ commentsJani Taskinen2008-08-031-2/+2
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* MFH: Added macros for managing zval refcounts and is_ref statusesYiduo (David) Wang2007-10-071-3/+3
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* fix bug #33734 and related (Something strange with COM Object)Rob Richards2006-12-241-2/+2
| | | | | - caused by fix in com_handlers.c rev 1.22.2.5
* - Update after api changesRob Richards2006-05-101-2/+6
|
* bump year and license versionfoobar2006-01-011-3/+3
|
* Fixed bug #35316 (Application exception trying to create COM object)Rob Richards2005-11-271-1/+1
|
* - Bumber up yearfoobar2005-08-031-1/+1
|
* emalloc -> safe_emalloc.Ilia Alshanetsky2004-11-211-2/+2
|
* Last dangerous alloca() bits.Ilia Alshanetsky2004-07-081-4/+4
|
* Update for count_elements handler for overloaded objects.Wez Furlong2004-05-041-1/+19
|
* Enable writing to SafeArray dimensions.Wez Furlong2004-05-031-8/+46
|
* Fix problem when assigning to a variable that holds an instance ofWez Furlong2004-05-031-3/+5
| | | | | a COM/VARIANT/DOTNET object.
* Fix for Bug #28161 (and probably others that I can't find in the bug db;Wez Furlong2004-04-281-17/+115
| | | | | | | | | | | | | | | | | | | | | | | the search interface sucks). Expand the proxy object so it can handle psuedo array style properties. ASP/VB code like this: headObj.Attribute("RID") = rid can be expressed like this in PHP: $headObj->Attribute['RID'] = $rid; In theory, this feature can be used for "multi dimensional" properties: headObj.Attribute("RID", "Foo") = rid; like this: $headObj->Attribute['RID']['Foo'] = $rid;
* This wasn't updated for new parameters for object handlers yet...Wez Furlong2004-04-131-4/+2
|
* Rename hasMore() to valid() as discussed. (Part V)Marcus Boerger2004-03-081-2/+2
|
* Use zval_ptr_dtor() to free variables as soon as they hit refcount of 0.Zeev Suraski2004-02-151-2/+2
| | | | | | | | | | Note: You should not be using ZVAL_DELREF() in day to day usage. Instead, you should use zval_ptr_dtor(). Use ZVAL_DELREF() only if you're messing with the refcount directly and know what you're doing. Note #2: For clarity, if you want to initialize a new zval with a refcount of 0, it's best to do that directly, instead of using ZVAL_DELREF after allocating the zval...
* Fix prototype/warningZeev Suraski2004-02-121-1/+1
|
* zend_default_classes.h -> zend_exceptions.hZeev Suraski2004-02-121-1/+1
|
* - Update with new destructor codeZeev Suraski2004-02-041-2/+2
|
* - A belated happy holidays and PHP 5Andi Gutmans2004-01-081-1/+1
|
* Port other major parts of PHP 4 COM extension into PHP 5 com_dotnetWez Furlong2004-01-071-0/+430
extension. This enables: - iteration of SafeArray types via foreach() - proxying of multi-dimensional SafeArray types so that multi-dimension array accesses work (untested!) - Fix COM exceptions, and expose them as their own class of exception "com_exception" - auto typelib file import (com.typelib_file ini option) - event sinking - wrapper to map PHP objects to COM - fix mapping of variant values to PHP values # Could someone please add com_saproxy.c and com_wrapper.c to the .dsp # file?