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 HTMLIMAGE_P_H
12 #define HTMLIMAGE_P_H
13 
14 #include "htmlimage_be.h"
15 
16 
17 struct HTML_IMAGE {
18   GWEN_INHERIT_ELEMENT(HTML_IMAGE)
19   GWEN_LIST_ELEMENT(HTML_IMAGE)
20 
21   char *imageName;
22   int width;
23   int height;
24 
25   uint32_t refCount;
26 };
27 
28 
29 
30 #endif
31 
32