mirror of
https://git.freebsd.org/ports.git
synced 2025-06-17 10:40:46 -04:00
Source general-purpose scripting language that is especially suited for Web development and can be embedded into HTML. Its syntax draws upon C, Java, and Perl, and is easy to learn. The main goal of the language is to allow web developers to write dynamically generated webpages quickly, but you can do much more with PHP. WWW: http://www.php.net/ PR: 145772 Submitted by: Alex Keda
24 lines
1.2 KiB
C
24 lines
1.2 KiB
C
--- Zend/zend_list.h.orig 2007-01-01 10:35:46.000000000 +0100
|
|
+++ Zend/zend_list.h 2008-01-29 11:05:12.000000000 +0100
|
|
@@ -71,9 +71,9 @@
|
|
void zend_destroy_rsrc_list_dtors(void);
|
|
|
|
ZEND_API int zend_list_insert(void *ptr, int type);
|
|
-ZEND_API int _zend_list_addref(int id TSRMLS_DC);
|
|
-ZEND_API int _zend_list_delete(int id TSRMLS_DC);
|
|
-ZEND_API void *_zend_list_find(int id, int *type TSRMLS_DC);
|
|
+ZEND_API int _zend_list_addref(ulong id TSRMLS_DC);
|
|
+ZEND_API int _zend_list_delete(ulong id TSRMLS_DC);
|
|
+ZEND_API void *_zend_list_find(ulong id, int *type TSRMLS_DC);
|
|
|
|
#define zend_list_addref(id) _zend_list_addref(id TSRMLS_CC)
|
|
#define zend_list_delete(id) _zend_list_delete(id TSRMLS_CC)
|
|
@@ -82,7 +82,7 @@
|
|
ZEND_API int zend_register_resource(zval *rsrc_result, void *rsrc_pointer, int rsrc_type);
|
|
ZEND_API void *zend_fetch_resource(zval **passed_id TSRMLS_DC, int default_id, char *resource_type_name, int *found_resource_type, int num_resource_types, ...);
|
|
|
|
-ZEND_API char *zend_rsrc_list_get_rsrc_type(int resource TSRMLS_DC);
|
|
+ZEND_API char *zend_rsrc_list_get_rsrc_type(ulong resource TSRMLS_DC);
|
|
ZEND_API int zend_fetch_list_dtor_id(char *type_name);
|
|
|
|
extern ZEND_API int le_index_ptr; /* list entry type for index pointers */
|