2000-03-12 06:05:41 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
2004-01-09 01:33:29 +08:00
|
|
|
| PHP Version 5 |
|
2000-03-12 06:05:41 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2010-01-03 17:23:27 +08:00
|
|
|
| Copyright (c) 1997-2010 The PHP Group |
|
2000-03-12 06:05:41 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2006-01-01 20:51:34 +08:00
|
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
2000-07-16 00:09:18 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
| available through the world-wide-web at the following url: |
|
2006-01-01 20:51:34 +08:00
|
|
|
| http://www.php.net/license/3_01.txt |
|
2000-03-12 06:05:41 +08:00
|
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
2000-07-16 00:09:18 +08:00
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@php.net so we can mail you a copy immediately. |
|
2000-03-12 06:05:41 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2002-02-28 16:29:35 +08:00
|
|
|
| Author: Kristian Koehntopp <kris@koehntopp.de> |
|
2000-03-12 06:05:41 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2002-04-24 20:45:55 +08:00
|
|
|
*/
|
2000-03-12 06:05:41 +08:00
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
2000-07-03 07:46:51 +08:00
|
|
|
#ifndef PHP_RECODE_H
|
|
|
|
#define PHP_RECODE_H
|
2000-03-12 06:05:41 +08:00
|
|
|
|
|
|
|
#if HAVE_LIBRECODE
|
|
|
|
|
|
|
|
extern zend_module_entry recode_module_entry;
|
|
|
|
#define phpext_recode_ptr &recode_module_entry
|
|
|
|
|
2001-07-30 09:56:43 +08:00
|
|
|
PHP_MINIT_FUNCTION(recode);
|
|
|
|
PHP_MSHUTDOWN_FUNCTION(recode);
|
|
|
|
PHP_MINFO_FUNCTION(recode);
|
|
|
|
PHP_FUNCTION(recode_string);
|
|
|
|
PHP_FUNCTION(recode_file);
|
2000-03-12 06:05:41 +08:00
|
|
|
|
|
|
|
#else
|
2002-04-24 20:45:55 +08:00
|
|
|
#define phpext_recode_ptr NULL
|
2000-03-12 06:05:41 +08:00
|
|
|
#endif
|
2002-03-18 19:46:00 +08:00
|
|
|
|
2000-07-03 07:46:51 +08:00
|
|
|
#endif /* PHP_RECODE_H */
|