/* +----------------------------------------------------------------------+ | PHP Version 5 | +----------------------------------------------------------------------+ | Copyright (c) 1997-2004 The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.0 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_0.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: Sascha Schumann | +----------------------------------------------------------------------+ */ #ifndef PHP_IRCG_H #define PHP_IRCG_H extern zend_module_entry ircg_module_entry; #define phpext_ircg_ptr &ircg_module_entry #ifdef PHP_WIN32 #define PHP_IRCG_API __declspec(dllexport) #else #define PHP_IRCG_API #endif PHP_FUNCTION(ircg_set_on_read_data); PHP_FUNCTION(ircg_set_on_die); PHP_FUNCTION(ircg_pconnect); PHP_FUNCTION(ircg_join); PHP_FUNCTION(ircg_set_current); PHP_FUNCTION(ircg_set_file); PHP_FUNCTION(ircg_part); PHP_FUNCTION(ircg_register_current_conn); PHP_FUNCTION(ircg_whois); PHP_FUNCTION(ircg_msg); PHP_FUNCTION(ircg_notice); PHP_FUNCTION(ircg_nick); PHP_FUNCTION(ircg_html_encode); PHP_FUNCTION(ircg_ignore_add); PHP_FUNCTION(ircg_ignore_del); PHP_FUNCTION(ircg_kick); PHP_FUNCTION(ircg_fetch_error_msg); PHP_FUNCTION(ircg_topic); PHP_FUNCTION(ircg_channel_mode); PHP_FUNCTION(ircg_disconnect); PHP_FUNCTION(ircg_is_conn_alive); PHP_FUNCTION(ircg_lookup_format_messages); PHP_FUNCTION(ircg_register_format_messages); PHP_FUNCTION(ircg_nickname_escape); PHP_FUNCTION(ircg_nickname_unescape); PHP_FUNCTION(ircg_get_username); PHP_FUNCTION(ircg_eval_ecmascript_params); PHP_FUNCTION(ircg_list); PHP_FUNCTION(ircg_who); PHP_FUNCTION(ircg_invite); PHP_FUNCTION(ircg_names); PHP_FUNCTION(ircg_lusers); PHP_FUNCTION(ircg_oper); PHP_MINIT_FUNCTION(ircg); PHP_MSHUTDOWN_FUNCTION(ircg); PHP_RINIT_FUNCTION(ircg); PHP_RSHUTDOWN_FUNCTION(ircg); PHP_MINFO_FUNCTION(ircg); ZEND_BEGIN_MODULE_GLOBALS(ircg) void *flush_data; char *control_user; long shared_mem_size; long max_fmt_msg_sets; long ka_interval; char *work_dir; ZEND_END_MODULE_GLOBALS(ircg) #ifdef ZTS #define IRCGG(v) TSRMG(ircg_globals_id, zend_ircg_globals *, v) #else #define IRCGG(v) (ircg_globals.v) #endif #endif /* PHP_IRCG_H */ /* * Local variables: * tab-width: 4 * c-basic-offset: 4 * End: */