4 #define PHP_MISTRAL_VERSION "0.1.0"
6 extern zend_module_entry mistral_module_entry
;
7 #define phpext_mistral_ptr &mistral_module_entry
13 PHP_MSHUTDOWN_FUNCTION(mistral
);
14 PHP_MINFO_FUNCTION(mistral
);
16 PHP_FUNCTION(mistral_init
);
17 PHP_FUNCTION(mistral_register_callback
);
18 PHP_FUNCTION(mistral_start
);
20 #define php_strcasecmp(string, php_string, php_len) ((strlen(string)) == php_len && strncasecmp(string, php_string, php_len) == 0)
21 #define php_strcmp(string, php_string, php_len) ((strlen(string)) == php_len && strncmp(string, php_string, php_len) == 0)
23 #endif /* MISTRAL_H */