SM0 She11
Path:
/
/
usr
/
local
/
src
/
imagick-3.4.4
Full Path (server): /usr/local/src/imagick-3.4.4
Create Fil3
Upl04d Fil3
📄 .deps
[E]
[D]
[R]
📁 .libs
Open
[D]
[R]
📄 CREDITS
[E]
[D]
[R]
📄 ChangeLog
[E]
[D]
[R]
📄 LICENSE
[E]
[D]
[R]
📄 Makefile
[E]
[D]
[R]
📄 Makefile.fragments
[E]
[D]
[R]
📄 Makefile.global
[E]
[D]
[R]
📄 Makefile.objects
[E]
[D]
[R]
📄 acinclude.m4
[E]
[D]
[R]
📄 aclocal.m4
[E]
[D]
[R]
📁 autom4te.cache
Open
[D]
[R]
📁 build
Open
[D]
[R]
📄 config.guess
[E]
[D]
[R]
📄 config.h
[E]
[D]
[R]
📄 config.h.in
[E]
[D]
[R]
📄 config.log
[E]
[D]
[R]
📄 config.m4
[E]
[D]
[R]
📄 config.nice
[E]
[D]
[R]
📄 config.status
[E]
[D]
[R]
📄 config.sub
[E]
[D]
[R]
📄 config.w32
[E]
[D]
[R]
📄 configure
[E]
[D]
[R]
📄 configure.in
[E]
[D]
[R]
📁 examples
Open
[D]
[R]
📄 imagemagick.m4
[E]
[D]
[R]
📄 imagick.c
[E]
[D]
[R]
📄 imagick.la
[E]
[D]
[R]
📄 imagick.lo
[E]
[D]
[R]
📄 imagick_class.c
[E]
[D]
[R]
📄 imagick_class.lo
[E]
[D]
[R]
📄 imagick_file.c
[E]
[D]
[R]
📄 imagick_file.lo
[E]
[D]
[R]
📄 imagick_helpers.c
[E]
[D]
[R]
📄 imagick_helpers.lo
[E]
[D]
[R]
📄 imagickdraw_class.c
[E]
[D]
[R]
📄 imagickdraw_class.lo
[E]
[D]
[R]
📄 imagickkernel_class.c
[E]
[D]
[R]
📄 imagickkernel_class.lo
[E]
[D]
[R]
📄 imagickpixel_class.c
[E]
[D]
[R]
📄 imagickpixel_class.lo
[E]
[D]
[R]
📄 imagickpixeliterator_class.c
[E]
[D]
[R]
📄 imagickpixeliterator_class.lo
[E]
[D]
[R]
📁 include
Open
[D]
[R]
📄 install-sh
[E]
[D]
[R]
📄 libtool
[E]
[D]
[R]
📄 ltmain.sh
[E]
[D]
[R]
📄 missing
[E]
[D]
[R]
📄 mkinstalldirs
[E]
[D]
[R]
📁 modules
Open
[D]
[R]
📄 php_imagick.h
[E]
[D]
[R]
📄 php_imagick_defs.h
[E]
[D]
[R]
📄 php_imagick_file.h
[E]
[D]
[R]
📄 php_imagick_helpers.h
[E]
[D]
[R]
📄 php_imagick_macros.h
[E]
[D]
[R]
📄 php_imagick_shared.h
[E]
[D]
[R]
📄 run-tests.php
[E]
[D]
[R]
📄 shim_im6_to_im7.c
[E]
[D]
[R]
📄 shim_im6_to_im7.h
[E]
[D]
[R]
📄 shim_im6_to_im7.lo
[E]
[D]
[R]
📁 tests
Open
[D]
[R]
Editing: php_imagick.h
/* +----------------------------------------------------------------------+ | PHP Version 5 / Imagick | +----------------------------------------------------------------------+ | Copyright (c) 2006-2013 Mikko Koppanen, Scott MacVicar | | ImageMagick (c) ImageMagick Studio LLC | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | http://www.php.net/license/3_01.txt | | If you did not receive a copy of the PHP license and are unable to | | obtain it through the world-wide-web, please send a note to | | license@php.net so we can mail you a copy immediately. | +----------------------------------------------------------------------+ | Author: Mikko Kopppanen <mkoppanen@php.net> | | Scott MacVicar <scottmac@php.net> | +----------------------------------------------------------------------+ */ #ifndef PHP_IMAGICK_H /* Prevent double inclusion */ #define PHP_IMAGICK_H /* Define Extension Properties */ #define PHP_IMAGICK_EXTNAME "imagick" // The version is deliberately left as 'PACKAGE_VERSION' in source code. // It is only replaced with the actual version number that packaged through pecl.php.net #define PHP_IMAGICK_VERSION "3.4.4" #define PHP_IMAGICK_EXTNUM 30404 /* Import configure options when building outside of the PHP source tree */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #ifdef ZTS # include "TSRM.h" #endif /* Include PHP Standard Headers */ #include "php.h" /* Define the entry point symbol * ZE will use when loading this module */ extern zend_module_entry imagick_module_entry; #define phpext_imagick_ptr &imagick_module_entry #endif /* PHP_IMAGICK_H */
Save