summaryrefslogtreecommitdiff
path: root/ext/rpc/com/COM.c
Commit message (Collapse)AuthorAgeFilesLines
* fixed unicodeconversion and parameter passing bugs in com and dotnet modulesHarald Radi2001-01-281-1129/+0
|
* Import COM patch from Harald Radi <h.radi@nme.at>Zeev Suraski2001-01-021-12/+57
| | | | | The new code should allow for better international support.
* Heads up people!Zeev Suraski2000-12-221-1/+18
| | | | | | Updated the get_current_key() API - the relevant authors, please take a look at the updated code and make sure it's ok...
* Use zend_register_list_destructors_ex() instead.Andrei Zmievski2000-10-251-1/+1
|
* Mega-patch to get better resource information for modules.Andrei Zmievski2000-10-201-2/+3
| | | | | | | | | | | | | * Fixed a bug in zend_rsrc_list_get_rsrc_type() * Switched register_list_destructors() to use zend_register_list_destructors_ex() instead * Updated all relevant modules to provide the resource type name to register_list_destructors() call * Updated var_dump() to output resource type name instead of number @- Made resource type names visible, e.g. var_dump() and @ get_resource_type() display "file" for file resources. (Andrei)
* Fix bug #6447Zeev Suraski2000-10-091-8/+13
|
* Add ***EXPERIMENTAL*** Zend OO Extension support for Microsoft.NetSam Ruby2000-08-261-2/+12
|
* C++ // comments are evil ...Hartmut Holzgraefe2000-06-161-8/+8
|
* - Change register_internal_class to zend_register_internal_class forAndi Gutmans2000-06-091-1/+1
| | | | | | - consistency. - Andrei: I'm still thinking about the _ex you want me to implement
* - ARG_COUNT(ht) -> ZEND_NUM_ARGS() mega patchAndi Gutmans2000-06-051-5/+5
|
* even more protos were missingHartmut Holzgraefe2000-05-231-0/+6
|
* some protos where missing, took them from php3Hartmut Holzgraefe2000-05-231-1/+6
|
* Update the license with the new clause 6Zeev Suraski2000-05-181-2/+2
|
* - Make Windows compile again.Andi Gutmans2000-05-051-4/+5
|
* - Change PHP_ to V_ (directory & file functions)Andi Gutmans2000-04-151-1/+1
|
* - Added support for reading properties that require arguments in the COMZeev Suraski2000-04-101-8/+12
| | | | | module - writing to them will only be supported in PHP 4.1 (Zeev)
* indentZeev Suraski2000-04-101-66/+56
|
* *** empty log message ***Zeev Suraski2000-04-101-0/+1
|
* Object overloading API changed slightly (llist is now a pointer)Zeev Suraski2000-04-101-9/+9
|
* - Hopefully got most of them. We also need a chdir_file function likeAndi Gutmans2000-03-301-1/+1
| | | | | for Apache.
* Change extension names in all extensions' zend_module_entry to theirStig Bakken2000-03-061-1/+1
| | | | | directory name.
* Get the license right... (this won't make it to RC1 of B4)Zeev Suraski2000-02-191-2/+2
|
* - Separate the overloaded objects' types from Zend's data types.Andi Gutmans2000-01-041-9/+9
| | | | | | | | There is no reason for them to be the same, and IS_METHOD just cluttered the data types. - Overloaded elements should now use OE_IS_OBJECT, OE_IS_ARRAY, and OE_IS_METHOD
* Happy Y2K patch! Happy new year (or the new millennium, depending on whetherSascha Schumann2000-01-011-1/+1
| | | | | you start counting at 0 or 1).
* Change ALLOC_ZVAL() semanticsZeev Suraski1999-12-261-2/+2
|
* - Move more stuff to ALLOC_ZVAL(). We need to add those FREE_ZVAL()'s now.Andi Gutmans1999-12-241-2/+2
|
* We're using ZVAL's now.Andrei Zmievski1999-12-211-1/+1
|
* More php3_ annihilationZeev Suraski1999-12-171-7/+7
|
* Support DATE_to_pval and DISPATCH_to_pvalSam Ruby1999-12-031-7/+42
|
* Convert more source files to use thread-safe functionsSascha Schumann1999-11-261-3/+4
|
* - Win32 fixesZeev Suraski1999-11-061-37/+96
| | | | | - COM module improvements from Boris Wedl
* - Make COM compile againAndi Gutmans1999-10-201-1/+1
|
* Add output_buffering directiveZeev Suraski1999-08-241-4/+0
|
* Removed '3' from key functions in PHP (maintained compatibility throughZeev Suraski1999-08-021-13/+13
| | | | | php3_compat.h)
* More symbol work.Andrey Hristov1999-07-261-12/+12
| | | | | | | | | | | | | | | | | | | | | | | | | I've defined a few macros to help with module/request init/startup function definitions. Basically: PHP_MINIT_FUNCTION(module) PHP_MSHUTDOWN_FUNCTION(module) PHP_RINIT_FUNCTION(module) PHP_RSHUTDOWN_FUNCTION(module) PHP_MINFO_FUNCTION(module) These will expand to proper function prototypes. Now to specify these in the module entry, use: PHP_MINIT(module) PHP_MSHUTDOWN(module) PHP_RINIT(module) PHP_RSHUTDOWN(module) PHP_MINFO(module) I've updated all modules in ext/standard and everything from ext/apache to ext/db. If you can, please update your module to use these macros.
* - Fix the new operator incompatibility.Andi Gutmans1999-07-261-3/+3
| | | | | | | - I commented PHP_FUNCTION(strtotime) in datetime.c because it stopped win32 from compiling. This needs to be fixed!!! - Check out libzend to compile the tree now.
* License updateZeev Suraski1999-07-161-20/+9
|
* Don't touch refcount and EA directlyZeev Suraski1999-07-091-2/+1
|
* Step 2:Zeev Suraski1999-07-091-1/+1
| | | | | Rename is_ref to EA
* * Use new Zend macros for standardized definition of classes.Zeev Suraski1999-05-281-7/+6
| | | | | | * Reverse bogus shutdown order. * Use the new object/class support of Zend to make the dir functions work again.
* - run ext sources through conv_protoSascha Schumann1999-05-211-2/+2
| | | | | - add necessary phpext_*_ptr
* * Finalizing the PHP version of SAPI. Support POST and cookies among other ↵Zeev Suraski1999-05-091-2/+9
| | | | | | | | | | | | | things. * Fully implement ISAPI support - POST and cookies among other things. * Almost completely rewrote phpinfo(). Allow modules to easily display their information in phpinfo() without modifying phpinfo() itself (prototype for the module info function was changed, thus the large amount of updated module files). * Initial extended SAPI support for Apache, completely untested. * CGI now uses SAPI fully as well.
* A step towards generalizing the INI mechanism even moreZeev Suraski1999-04-281-2/+2
|
* moved apache, com and hyperwave into ext/Stig Bakken1999-04-211-0/+959