]> granicus.if.org Git - php/commitdiff
- Removed unused INI sections.
authorDerick Rethans <derick@php.net>
Thu, 20 May 2004 17:03:24 +0000 (17:03 +0000)
committerDerick Rethans <derick@php.net>
Thu, 20 May 2004 17:03:24 +0000 (17:03 +0000)
ext/fam/fam.c
ext/ncurses/ncurses.c

index f93d6dbef20c4e6c03e3a8fc25829a56fd5b1853..d83ad77cef89427f7f6231ac4b7617df739efd83 100644 (file)
@@ -79,16 +79,6 @@ zend_module_entry fam_module_entry = {
 ZEND_GET_MODULE(fam)
 #endif
 
-/* {{{ PHP_INI
- */
-/* Remove comments and fill if you need to have entries in php.ini
-PHP_INI_BEGIN()
-    STD_PHP_INI_ENTRY("fam.global_value",      "42", PHP_INI_ALL, OnUpdateLong, global_value, zend_fam_globals, fam_globals)
-    STD_PHP_INI_ENTRY("fam.global_string", "foobar", PHP_INI_ALL, OnUpdateString, global_string, zend_fam_globals, fam_globals)
-PHP_INI_END()
-*/
-/* }}} */
-
 /* {{{ php_fam_init_globals
  */
 /* Uncomment this function if you have INI entries
index 1d162e5137a6ca0d49ff467e7ab3bd3f561e9a12..eedd8a32c0cf8613f0944d9846ea75a970a1ece7 100644 (file)
@@ -71,16 +71,6 @@ zend_module_entry ncurses_module_entry = {
 ZEND_GET_MODULE(ncurses)
 #endif
 
-/* {{{ PHP_INI
- */
-/* Remove comments and fill if you need to have entries in php.ini
-PHP_INI_BEGIN()
-       STD_PHP_INI_ENTRY("ncurses.value",      "42", PHP_INI_ALL, OnUpdateLong, global_value, zend_ncurses_globals, ncurses_globals)
-       STD_PHP_INI_ENTRY("ncurses.string", "foobar", PHP_INI_ALL, OnUpdateString, global_string, zend_ncurses_globals, ncurses_globals)
-PHP_INI_END()
-*/
-/* }}} */
-
 #define PHP_NCURSES_CONST(x)  REGISTER_LONG_CONSTANT("NCURSES_"#x, x, CONST_CS | CONST_PERSISTENT)
 #define PHP_NCURSES_FKEY_CONST(x)  REGISTER_LONG_CONSTANT("NCURSES_KEY_F"#x, KEY_F0 + x, CONST_CS | CONST_PERSISTENT)