1999-04-22 02:10:39 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
2001-12-11 23:32:16 +08:00
|
|
|
| PHP Version 4 |
|
1999-04-22 02:10:39 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2001-12-11 23:32:16 +08:00
|
|
|
| Copyright (c) 1997-2002 The PHP Group |
|
1999-04-22 02:10:39 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2000-07-24 09:40:02 +08:00
|
|
|
| This source file is subject to version 2.02 of the PHP license, |
|
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
|
|
| available at through the world-wide-web at |
|
|
|
|
| http://www.php.net/license/2_02.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. |
|
1999-04-22 02:10:39 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Author: Alex Plotnick <alex@wgate.com> |
|
|
|
|
+----------------------------------------------------------------------+
|
2000-07-24 09:40:02 +08:00
|
|
|
*/
|
1999-04-22 02:10:39 +08:00
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
2000-07-03 08:41:19 +08:00
|
|
|
#ifndef PHP_GETTEXT_H
|
|
|
|
#define PHP_GETTEXT_H
|
1999-04-22 02:10:39 +08:00
|
|
|
|
|
|
|
#if HAVE_LIBINTL
|
|
|
|
#ifndef INIT_FUNC_ARGS
|
2001-02-27 02:14:50 +08:00
|
|
|
#include "zend_modules.h"
|
1999-04-22 02:10:39 +08:00
|
|
|
#endif
|
|
|
|
|
1999-12-18 05:50:07 +08:00
|
|
|
extern zend_module_entry php_gettext_module_entry;
|
|
|
|
#define gettext_module_ptr &php_gettext_module_entry
|
1999-04-22 02:10:39 +08:00
|
|
|
|
1999-07-28 03:44:46 +08:00
|
|
|
PHP_MINFO_FUNCTION(gettext);
|
|
|
|
|
1999-05-21 18:06:25 +08:00
|
|
|
PHP_FUNCTION(textdomain);
|
|
|
|
PHP_FUNCTION(gettext);
|
|
|
|
PHP_FUNCTION(dgettext);
|
|
|
|
PHP_FUNCTION(dcgettext);
|
|
|
|
PHP_FUNCTION(bindtextdomain);
|
2001-08-29 21:13:24 +08:00
|
|
|
#if HAVE_NGETTEXT
|
2001-08-28 02:43:07 +08:00
|
|
|
PHP_FUNCTION(ngettext);
|
2001-08-29 21:13:24 +08:00
|
|
|
#endif
|
|
|
|
#if HAVE_DNGETTEXT
|
2001-08-28 02:43:07 +08:00
|
|
|
PHP_FUNCTION(dngettext);
|
2001-08-29 21:13:24 +08:00
|
|
|
#endif
|
|
|
|
#if HAVE_DCNGETTEXT
|
2001-08-28 02:43:07 +08:00
|
|
|
PHP_FUNCTION(dcngettext);
|
2001-08-29 21:13:24 +08:00
|
|
|
#endif
|
2001-11-10 00:27:09 +08:00
|
|
|
#if HAVE_BIND_TEXTDOMAIN_CODESET
|
|
|
|
PHP_FUNCTION(bind_textdomain_codeset);
|
|
|
|
#endif
|
1999-04-22 02:10:39 +08:00
|
|
|
|
|
|
|
#else
|
1999-05-21 16:20:13 +08:00
|
|
|
#define gettext_module_ptr NULL
|
1999-04-22 02:10:39 +08:00
|
|
|
#endif /* HAVE_LIBINTL */
|
|
|
|
|
1999-05-21 16:20:13 +08:00
|
|
|
#define phpext_gettext_ptr gettext_module_ptr
|
|
|
|
|
2000-07-03 08:41:19 +08:00
|
|
|
#endif /* PHP_GETTEXT_H */
|