[PHP-DEV] CVS update: php3/functions From: rasmus (php-dev <email protected>)
Date: 02/28/99

Date: Sunday February 28, 1999 @ 11:56
Author: rasmus

Update of /repository/php3/functions
In directory asf:/u/temp/cvs-serv16856/functions

Modified Files:
        magick.c
Log Message:
More ImageMagick work

Index: php3/functions/magick.c
diff -c php3/functions/magick.c:1.5 php3/functions/magick.c:1.6
*** php3/functions/magick.c:1.5 Fri Feb 26 00:56:38 1999
--- php3/functions/magick.c Sun Feb 28 11:56:22 1999
***************
*** 23,33 ****
     | If you did not, or have any questions about PHP licensing, please |
     | contact core <email protected> |
     +----------------------------------------------------------------------+
! | Authors: Thies C. Arntzen (thies <email protected>) |
     +----------------------------------------------------------------------+
   */
  
! /* $Id: magick.c,v 1.5 1999/02/26 05:56:38 rasmus Exp $ */
  
  /* TODO list:
   *
--- 23,34 ----
     | If you did not, or have any questions about PHP licensing, please |
     | contact core <email protected> |
     +----------------------------------------------------------------------+
! | Authors: Thies C. Arntzen (thies <email protected>) |
! | Rasmnus Lerdorf (rasmus <email protected>) |
     +----------------------------------------------------------------------+
   */
  
! /* $Id: magick.c,v 1.6 1999/02/28 16:56:22 rasmus Exp $ */
  
  /* TODO list:
   *
***************
*** 176,188 ****
  };
  
  php3_module_entry magick_module_entry = {
! "Magick", /* extension name */
          magick_functions, /* extension function list */
          php3_minit_magick, /* extension-wide startup function */
          php3_mshutdown_magick, /* extension-wide shutdown function */
! php3_rinit_magick, /* per-request startup function */
! php3_rshutdown_magick, /* per-request shutdown function */
! php3_info_magick, /* information function */
          STANDARD_MODULE_PROPERTIES
  };
  
--- 177,189 ----
  };
  
  php3_module_entry magick_module_entry = {
! "Magick", /* extension name */
          magick_functions, /* extension function list */
          php3_minit_magick, /* extension-wide startup function */
          php3_mshutdown_magick, /* extension-wide shutdown function */
! php3_rinit_magick, /* per-request startup function */
! php3_rshutdown_magick, /* per-request shutdown function */
! php3_info_magick, /* information function */
          STANDARD_MODULE_PROPERTIES
  };
  
***************
*** 278,284 ****
  void php3_info_magick()
  {
  #if !(WIN32|WINNT)
! php3_printf("ImageMagick support enabled");
  #endif
  }
  /* }}} */
--- 279,287 ----
  void php3_info_magick()
  {
  #if !(WIN32|WINNT)
! PUTS(MagickVersion);
! PUTS("<BR>\n");
! PUTS(MagickCopyright);
  #endif
  }
  /* }}} */

--
PHP Development Mailing List   http://www.php.net/
To unsubscribe send an empty message to php-dev-unsubscribe <email protected>
For help: php-dev-help <email protected>