/* This file was generated automatically by Zephir do not modify it! */
#ifndef PHP_PHADY_H
#define PHP_PHADY_H 1
#ifdef PHP_WIN32
#define ZEPHIR_RELEASE 1
#endif
#include "kernel/globals.h"
#define PHP_PHADY_NAME        "phady"
#define PHP_PHADY_VERSION     "0.0.1"
#define PHP_PHADY_EXTNAME     "phady"
#define PHP_PHADY_AUTHOR      ""
#define PHP_PHADY_ZEPVERSION  "0.7.1b"
#define PHP_PHADY_DESCRIPTION ""
ZEND_BEGIN_MODULE_GLOBALS(phady)
	int initialized;
	/* Memory */
	zephir_memory_entry *start_memory; /**< The first preallocated frame */
	zephir_memory_entry *end_memory; /**< The last preallocate frame */
	zephir_memory_entry *active_memory; /**< The current memory frame */
	/* Virtual Symbol Tables */
	zephir_symbol_table *active_symbol_table;
	/** Function cache */
	HashTable *fcache;
	zephir_fcall_cache_entry *scache[ZEPHIR_MAX_CACHE_SLOTS];
	/* Cache enabled */
	unsigned int cache_enabled;
	/* Max recursion control */
	unsigned int recursive_lock;
	/* Global constants */
	zval *global_true;
	zval *global_false;
	zval *global_null;
	
ZEND_END_MODULE_GLOBALS(phady)
#ifdef ZTS
#include "TSRM.h"
#endif
ZEND_EXTERN_MODULE_GLOBALS(phady)
#ifdef ZTS
	#define ZEPHIR_GLOBAL(v) TSRMG(phady_globals_id, zend_phady_globals *, v)
#else
	#define ZEPHIR_GLOBAL(v) (phady_globals.v)
#endif
#ifdef ZTS
	#define ZEPHIR_VGLOBAL ((zend_phady_globals *) (*((void ***) tsrm_ls))[TSRM_UNSHUFFLE_RSRC_ID(phady_globals_id)])
#else
	#define ZEPHIR_VGLOBAL &(phady_globals)
#endif
#define ZEPHIR_API ZEND_API
#define zephir_globals_def phady_globals
#define zend_zephir_globals_def zend_phady_globals
extern zend_module_entry phady_module_entry;
#define phpext_phady_ptr &phady_module_entry
#endif
 
  |