diff options
author | Christoph M. Becker <cmbecker69@gmx.de> | 2019-07-12 13:58:17 +0200 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2019-07-12 13:58:17 +0200 |
commit | 58b607c9ea6cdc631a61b18de0cf5c0b3c96c074 (patch) | |
tree | c2aadcc2425bd33bcbf970433ef05b4e9a7f3d1a /ext/recode/php_recode.h | |
parent | 8aa78659975ffecb2dbadd972e9acd69b04fb15c (diff) | |
download | php-git-58b607c9ea6cdc631a61b18de0cf5c0b3c96c074.tar.gz |
Removed ext/recode
Cf. <https://wiki.php.net/rfc/unbundle_recode>.
Diffstat (limited to 'ext/recode/php_recode.h')
-rw-r--r-- | ext/recode/php_recode.h | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/ext/recode/php_recode.h b/ext/recode/php_recode.h deleted file mode 100644 index 05f4bd9ae1..0000000000 --- a/ext/recode/php_recode.h +++ /dev/null @@ -1,40 +0,0 @@ -/* - +----------------------------------------------------------------------+ - | PHP Version 7 | - +----------------------------------------------------------------------+ - | Copyright (c) The PHP Group | - +----------------------------------------------------------------------+ - | 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: Kristian Koehntopp <kris@koehntopp.de> | - +----------------------------------------------------------------------+ -*/ - -#ifndef PHP_RECODE_H -#define PHP_RECODE_H - -#if HAVE_LIBRECODE - -extern zend_module_entry recode_module_entry; -#define phpext_recode_ptr &recode_module_entry - -#include "php_version.h" -#define PHP_RECODE_VERSION PHP_VERSION - -PHP_MINIT_FUNCTION(recode); -PHP_MSHUTDOWN_FUNCTION(recode); -PHP_MINFO_FUNCTION(recode); -PHP_FUNCTION(recode_string); -PHP_FUNCTION(recode_file); - -#else -#define phpext_recode_ptr NULL -#endif - -#endif /* PHP_RECODE_H */ |