summaryrefslogtreecommitdiff
path: root/src/bin/e_configure.h
blob: 78ab99161987b39c4eb50bd711833080b1107b02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifdef E_TYPEDEFS

typedef struct _E_Configure E_Configure;

#ifndef E_CONFIGURE_H
#define E_CONFIGURE_H

struct _E_Configure
{
   E_Container *con;
   E_Win       *win;
   Evas        *evas;
   Evas_Object *edje;
   Evas_Object *box;
   E_App       *apps;
   Evas_List   *icons;
   Evas_List   *app_ref;
};

E_Configure *e_configure_show(E_Container *con);

#endif
#endif