2003-02-12 08:45:53 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
2003-02-22 15:31:01 +08:00
|
|
|
| PHP Version 5 |
|
2003-02-12 08:45:53 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2013-01-01 16:37:09 +08:00
|
|
|
| Copyright (c) 1997-2013 The PHP Group |
|
2003-02-12 08:45:53 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2006-01-01 20:51:34 +08:00
|
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
2003-02-12 08:45:53 +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 |
|
2003-02-12 08:45:53 +08:00
|
|
|
| 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. |
|
|
|
|
+----------------------------------------------------------------------+
|
2007-10-06 05:23:56 +08:00
|
|
|
| Authors: Georg Richter <georg@php.net> |
|
|
|
|
| Andrey Hristov <andrey@php.net> |
|
|
|
|
| Ulf Wendel <uw@php.net> |
|
2003-02-12 08:45:53 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
|
2010-10-04 18:02:58 +08:00
|
|
|
$Id$
|
2003-02-12 08:45:53 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PHP_MYSQLI_H
|
|
|
|
#define PHP_MYSQLI_H
|
|
|
|
|
2007-10-06 05:23:56 +08:00
|
|
|
#define phpext_mysqli_ptr &mysqli_module_entry
|
|
|
|
extern zend_module_entry mysqli_module_entry;
|
2003-02-12 08:45:53 +08:00
|
|
|
|
|
|
|
#endif /* PHP_MYSQLI.H */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* indent-tabs-mode: t
|
|
|
|
* End:
|
2005-01-17 03:28:55 +08:00
|
|
|
* vim600: noet sw=4 ts=4 fdm=marker
|
|
|
|
* vim<600: noet sw=4 ts=4
|
2003-02-12 08:45:53 +08:00
|
|
|
*/
|