fix macros in the 5 basic extensions

This commit is contained in:
Anatol Belski 2014-08-16 11:37:14 +02:00
parent f790043e30
commit cb25136f4e
66 changed files with 1265 additions and 1265 deletions

View file

@ -30,11 +30,11 @@
#endif
extern PHP_CLI_API size_t sapi_cli_single_write(const char *str, uint str_length TSRMLS_DC);
extern PHP_CLI_API size_t sapi_cli_single_write(const char *str, php_size_t str_length TSRMLS_DC);
typedef struct {
size_t (*cli_shell_write)(const char *str, uint str_length TSRMLS_DC);
int (*cli_shell_ub_write)(const char *str, uint str_length TSRMLS_DC);
php_size_t (*cli_shell_write)(const char *str, php_size_t str_length TSRMLS_DC);
php_size_t (*cli_shell_ub_write)(const char *str, php_size_t str_length TSRMLS_DC);
int (*cli_shell_run)(TSRMLS_D);
} cli_shell_callbacks_t;