blob: 42df0a87ae98bafe232f0c31bad0fde3738e5693 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#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_logo(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 */
|