2000-02-26 05:27:03 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
2001-12-11 23:32:16 +08:00
|
|
|
| PHP Version 4 |
|
2000-02-26 05:27:03 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2002-12-31 23:59:15 +08:00
|
|
|
| Copyright (c) 1997-2003 The PHP Group |
|
2000-02-26 05:27:03 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2000-07-24 13:41:02 +08:00
|
|
|
| This source file is subject to version 2.02 of the PHP license, |
|
2000-02-26 05:27:03 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
|
|
| available at through the world-wide-web at |
|
2000-07-24 13:41:02 +08:00
|
|
|
| http://www.php.net/license/2_02.txt. |
|
2000-02-26 05:27:03 +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. |
|
|
|
|
+----------------------------------------------------------------------+
|
2002-02-28 16:29:35 +08:00
|
|
|
| Author: Stig Bakken <ssb@fast.no> |
|
2000-02-26 05:27:03 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2000-07-24 13:41:02 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* $Id$ */
|
2000-02-26 05:27:03 +08:00
|
|
|
|
2000-07-03 07:46:51 +08:00
|
|
|
#ifndef PHP_TICKS_H
|
|
|
|
#define PHP_TICKS_H
|
2000-02-26 05:27:03 +08:00
|
|
|
|
2001-07-28 19:36:37 +08:00
|
|
|
int php_startup_ticks(TSRMLS_D);
|
|
|
|
void php_shutdown_ticks(TSRMLS_D);
|
2000-02-26 05:27:03 +08:00
|
|
|
void php_run_ticks(int count);
|
2000-08-29 17:18:48 +08:00
|
|
|
PHPAPI void php_add_tick_function(void (*func)(int));
|
|
|
|
PHPAPI void php_remove_tick_function(void (*func)(int));
|
2000-02-26 05:27:03 +08:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* End:
|
|
|
|
*/
|