diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2010-08-20 23:24:19 +0200 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2010-08-20 23:24:19 +0200 |
commit | f5c598b518d1f906148534d015f50075d3e8242d (patch) | |
tree | 21dd70add5b366c3dd80641b77f6b18e0baa009e /src/IO/mime.h | |
parent | e98d02a01ffeb18ede86af025e51ae1ec011c75a (diff) | |
parent | 5f0fc0e48b8cbee7e1795935da0abff6627fd498 (diff) |
merge
Diffstat (limited to 'src/IO/mime.h')
-rw-r--r-- | src/IO/mime.h | 21 |
1 files changed, 7 insertions, 14 deletions
diff --git a/src/IO/mime.h b/src/IO/mime.h index 0f51a1e2..0f20cf6d 100644 --- a/src/IO/mime.h +++ b/src/IO/mime.h @@ -5,7 +5,7 @@ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or + * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. */ @@ -13,7 +13,6 @@ #define __MIME_H__ #include <config.h> -#include <stddef.h> #ifdef __cplusplus extern "C" { @@ -31,18 +30,12 @@ void *a_Html_text (const char *Type,void *web, CA_Callback_t *Call, void **Data); void *a_Plain_text(const char *Type,void *web, CA_Callback_t *Call, void **Data); -#ifdef ENABLE_JPEG -void *a_Jpeg_image(const char *Type,void *web, CA_Callback_t *Call, - void **Data); -#endif -#ifdef ENABLE_PNG -void *a_Png_image (const char *Type,void *web, CA_Callback_t *Call, - void **Data); -#endif -#ifdef ENABLE_GIF -void *a_Gif_image (const char *Type,void *web, CA_Callback_t *Call, - void **Data); -#endif +void *a_Dicache_png_image (const char *Type,void *web, CA_Callback_t *Call, + void **Data); +void *a_Dicache_gif_image(const char *Type, void *Ptr, CA_Callback_t *Call, + void **Data); +void *a_Dicache_jpeg_image(const char *Type, void *Ptr, CA_Callback_t *Call, + void **Data); /* * Functions defined inside Mime module |