2003-02-19 16:40:19 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
2004-01-09 01:33:29 +08:00
|
|
|
| PHP Version 5 |
|
2003-02-19 16:40:19 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2008-12-31 19:15:49 +08:00
|
|
|
| Copyright (c) 1997-2009 The PHP Group |
|
2003-02-19 16:40:19 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2006-01-01 20:51:34 +08:00
|
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
2003-02-19 16:40:19 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
| available through the world-wide-web at the following url: |
|
2006-01-01 20:51:34 +08:00
|
|
|
| http://www.php.net/license/3_01.txt |
|
2003-02-19 16:40:19 +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. |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Author: |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
|
2000-11-02 22:18:34 +08:00
|
|
|
#ifndef _PHP_LOGOS_H
|
|
|
|
#define _PHP_LOGOS_H
|
|
|
|
|
2004-02-19 05:34:15 +08:00
|
|
|
BEGIN_EXTERN_C()
|
2006-08-13 03:33:54 +08:00
|
|
|
PHPAPI int php_register_info_logo(char *logo_string, const char *mimetype, const unsigned char *data, int size);
|
2001-05-22 01:48:49 +08:00
|
|
|
PHPAPI int php_unregister_info_logo(char *logo_string);
|
2004-02-19 05:34:15 +08:00
|
|
|
END_EXTERN_C()
|
|
|
|
|
2000-11-02 22:18:34 +08:00
|
|
|
int php_init_info_logos(void);
|
|
|
|
int php_shutdown_info_logos(void);
|
2001-07-31 14:28:05 +08:00
|
|
|
int php_info_logos(const char *logo_string TSRMLS_DC);
|
2000-11-02 22:18:34 +08:00
|
|
|
|
|
|
|
#endif /* _PHP_LOGOS_H */
|