diff options
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 |