1 /***************************************************************************
2  begin       : Fri Jul 16 2010
3  copyright   : (C) 2010 by Martin Preuss
4  email       : martin@libchipcard.de
5 
6  ***************************************************************************
7  *          Please see toplevel file COPYING for license details           *
8  ***************************************************************************/
9 
10 
11 #ifndef HTMLOBJECT_IMAGE_P_H
12 #define HTMLOBJECT_IMAGE_P_H
13 
14 
15 #include "o_image_be.h"
16 
17 
18 typedef struct OBJECT_IMAGE OBJECT_IMAGE;
19 struct OBJECT_IMAGE {
20   int scaledWidth;
21   int scaledHeight;
22   HTML_IMAGE *image;
23 };
24 static void GWENHYWFAR_CB HtmlObject_Image_FreeData(void *bp, void *p);
25 
26 
27 #endif
28 
29