blob: 612c765a6b019ade1267d9445b26642cf41bb233 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifdef E_TYPEDEFS
typedef struct _E_Obj_Dialog E_About;
#else
#ifndef E_ABOUT_H
#define E_ABOUT_H
EAPI E_About *e_about_new (E_Comp *c);
EAPI void e_about_show (E_About *about);
#endif
#endif
|