mirror of
https://github.com/php-win-ext/php-lua.git
synced 2026-03-24 17:12:16 +01:00
88 lines
2.5 KiB
C
88 lines
2.5 KiB
C
/*
|
|
+----------------------------------------------------------------------+
|
|
| Lua |
|
|
+----------------------------------------------------------------------+
|
|
| 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 : Johannes Schlueter <johannes@php.net> |
|
|
| Xinchen Hui <laruence@php.net> |
|
|
| Marcelo Araujo <msaraujo@php.net> |
|
|
+----------------------------------------------------------------------+
|
|
$Id: php_lua.h 324349 2012-03-19 03:17:15Z laruence $
|
|
*/
|
|
|
|
#ifndef PHP_LUA_H
|
|
#define PHP_LUA_H
|
|
|
|
#include "lua.h"
|
|
#include "lauxlib.h"
|
|
#include "lualib.h"
|
|
|
|
/* LUA_OK is defined sinc 5.2 */
|
|
#ifndef LUA_OK
|
|
#define LUA_OK 0
|
|
#endif
|
|
|
|
extern zend_module_entry lua_module_entry;
|
|
#define phpext_lua_ptr &lua_module_entry
|
|
|
|
#ifdef PHP_WIN32
|
|
#define PHP_LUA_API __declspec(dllexport)
|
|
#else
|
|
#define PHP_LUA_API
|
|
#endif
|
|
|
|
#ifdef ZTS
|
|
#include "TSRM.h"
|
|
#endif
|
|
|
|
#ifdef ZTS
|
|
#define LUA_G(v) TSRMG(lua_globals_id, zend_lua_globals *, v)
|
|
#else
|
|
#define LUA_G(v) (lua_globals.v)
|
|
#endif
|
|
|
|
#if ((PHP_MAJOR_VERSION == 5) && (PHP_MINOR_VERSION < 3)) || (PHP_MAJOR_VERSION < 5)
|
|
#define Z_ADDREF_P ZVAL_ADDREF
|
|
#define Z_REFCOUNT_P ZVAL_REFCOUNT
|
|
#define Z_DELREF_P ZVAL_DELREF
|
|
#endif
|
|
|
|
#define PHP_LUA_VERSION "1.1.1-dev"
|
|
#define Z_LUAVAL_P(obj) ((php_lua_object*)(zend_object_store_get_object(obj TSRMLS_CC)))->L
|
|
|
|
struct _php_lua_object {
|
|
zend_object obj;
|
|
lua_State *L;
|
|
};
|
|
|
|
typedef struct _php_lua_object php_lua_object;
|
|
|
|
zval * php_lua_get_zval_from_lua(lua_State *L, int index, zval *lua_obj TSRMLS_DC);
|
|
int php_lua_send_zval_to_lua(lua_State *L, zval *val TSRMLS_DC);
|
|
|
|
PHP_MINIT_FUNCTION(lua);
|
|
PHP_MSHUTDOWN_FUNCTION(lua);
|
|
PHP_MINFO_FUNCTION(lua);
|
|
|
|
PHP_METHOD(lua, __construct);
|
|
PHP_METHOD(lua, eval);
|
|
PHP_METHOD(lua, require);
|
|
#endif /* PHP_LUA_H */
|
|
|
|
|
|
/*
|
|
* Local variables:
|
|
* tab-width: 4
|
|
* c-basic-offset: 4
|
|
* End:
|
|
* vim600: noet sw=4 ts=4 fdm=marker
|
|
* vim<600: noet sw=4 ts=4
|
|
*/
|