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_shared.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_SHARED_H_ # define _PHP_IMAGICK_SHARED_H_ /* Should work with ImageMagick 6.x for now */ #include "php.h" #if defined(PHP_WIN32) && defined(IMAGICK_EXPORTS) #define PHP_IMAGICK_API __declspec(dllexport) #else #define PHP_IMAGICK_API PHPAPI #endif /* Allow extensions to use the class entries */ PHP_IMAGICK_API zend_class_entry *php_imagick_get_class_entry(); PHP_IMAGICK_API zend_class_entry *php_imagickdraw_get_class_entry(); PHP_IMAGICK_API zend_class_entry *php_imagickpixel_get_class_entry(); #endif
Save