summaryrefslogtreecommitdiff
path: root/ext/fribidi/php_fribidi.h
diff options
context:
space:
mode:
authorSVN Migration <svn@php.net>2002-10-12 14:20:33 +0000
committerSVN Migration <svn@php.net>2002-10-12 14:20:33 +0000
commitfaa91c556864bf06779a0bb05bbf97ad72a034fb (patch)
treef2b77f482eb07af38f786e126f967818f1d669c5 /ext/fribidi/php_fribidi.h
parentc93ff0fa6ffa231d4dc97d0766649f6f8038f32f (diff)
downloadphp-git-RELEASE_1_0b1.tar.gz
This commit was manufactured by cvs2svn to create tag 'RELEASE_1_0b1'.RELEASE_1_0b1
Diffstat (limited to 'ext/fribidi/php_fribidi.h')
-rw-r--r--ext/fribidi/php_fribidi.h62
1 files changed, 0 insertions, 62 deletions
diff --git a/ext/fribidi/php_fribidi.h b/ext/fribidi/php_fribidi.h
deleted file mode 100644
index 7e602bbf46..0000000000
--- a/ext/fribidi/php_fribidi.h
+++ /dev/null
@@ -1,62 +0,0 @@
-/*
- +----------------------------------------------------------------------+
- | PHP Version 4 |
- +----------------------------------------------------------------------+
- | Copyright (c) 1997-2002 The PHP Group |
- +----------------------------------------------------------------------+
- | 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. |
- +----------------------------------------------------------------------+
- | Author: Onn Ben-Zvi <onn@zend.com>, onnb@mercury.co.il |
- +----------------------------------------------------------------------+
- */
-
-#ifndef PHP_FRIBIDI_H
-#define PHP_FRIBIDI_H
-
-#if HAVE_FRIBIDI
-
-#include <fribidi/fribidi.h>
-
-extern zend_module_entry fribidi_module_entry;
-#define phpext_fribidi_ptr &fribidi_module_entry
-
-#ifdef PHP_WIN32
-#define PHP_FRIBIDI_API __declspec(dllexport)
-#else
-#define PHP_FRIBIDI_API
-#endif
-
-PHP_MINIT_FUNCTION(fribidi);
-PHP_MSHUTDOWN_FUNCTION(fribidi);
-PHP_RINIT_FUNCTION(fribidi);
-PHP_RSHUTDOWN_FUNCTION(fribidi);
-PHP_MINFO_FUNCTION(fribidi);
-
-PHP_FUNCTION(fribidi_log2vis);
-
-#ifdef ZTS
-#define FRIBIDIG(v) TSRMG(fribidi_globals_id, php_fribidi_globals *, v)
-#else
-#define FRIBIDIG(v) (fribidi_globals.v)
-#endif
-
-#else
-
-#define phpext_fribidi_ptr NULL
-
-#endif
-
-#endif /* PHP_FRIBIDI_H */
-
-/*
- * Local variables:
- * tab-width: 4
- * c-basic-offset: 4
- * End:
- */