[WM_ROT] Fixed floating mode window rotation bug that window doesn't send ROTATION_DO...
[platform/core/uifw/e17.git] / src / bin / e_import_dialog.h
1 #ifdef E_TYPEDEFS
2 typedef struct _E_Import_Dialog E_Import_Dialog;
3 #else
4 #ifndef E_IMPORT_DIALOG_H
5 #define E_IMPORT_DIALOG_H
6
7 #define E_IMPORT_DIALOG_TYPE 0xE0b0103f
8 struct _E_Import_Dialog
9 {
10    E_Object              e_obj_inherit;
11    Evas_Object          *fsel_obj;
12    Ecore_End_Cb          ok;
13    Ecore_Cb              cancel;
14
15    E_Dialog             *dia;
16 };
17
18 EAPI E_Import_Dialog *e_import_dialog_show(E_Container *con, const char *dev, const char *path, Ecore_End_Cb ok, Ecore_Cb cancel);
19
20 #endif
21 #endif