mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
43ff395b65
query_string, post_data, path_translated, request_uri, auth_user, auth_password and argv0 are modified, so they cannot become const.
11 lines
339 B
C
11 lines
339 B
C
#ifndef _PHP_LOGOS_H
|
|
#define _PHP_LOGOS_H
|
|
|
|
PHPAPI int php_register_info_logo(char *logo_string, char *mimetype, unsigned char *data, int size);
|
|
PHPAPI int php_unregister_info_logos(char *logo_string);
|
|
int php_init_info_logos(void);
|
|
int php_shutdown_info_logos(void);
|
|
int php_info_logos(const char *logo_string);
|
|
|
|
#endif /* _PHP_LOGOS_H */
|