2008-04-01 21:30:41 +00:00
|
|
|
#ifndef ECDB_H
|
|
|
|
#define ECDB_H
|
|
|
|
|
|
|
|
#include "config.h"
|
2008-08-04 23:28:43 +00:00
|
|
|
#include <Evas.h>
|
|
|
|
#include <Edje.h>
|
2008-04-01 21:30:41 +00:00
|
|
|
#include <Ecore.h>
|
|
|
|
#include <Ecore_Data.h>
|
|
|
|
#include <Ecore_File.h>
|
2008-08-04 22:18:34 +00:00
|
|
|
#include <Ecore_Evas.h>
|
2008-08-07 04:09:47 +00:00
|
|
|
#include <Ecore_Str.h>
|
2008-04-01 21:30:41 +00:00
|
|
|
#include <Efreet_Mime.h>
|
2008-08-04 22:18:34 +00:00
|
|
|
#include <Efreet.h>
|
2008-08-06 02:21:20 +00:00
|
|
|
#include <Ewl.h>
|
2008-08-04 22:18:34 +00:00
|
|
|
#include <libburn/libburn.h>
|
|
|
|
#include <libisofs/libisofs.h>
|
|
|
|
|
2008-04-01 21:30:41 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <libgen.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <pthread.h>
|
|
|
|
|
|
|
|
#undef FREE
|
|
|
|
#define FREE(dat) \
|
|
|
|
{ \
|
|
|
|
if (dat) { free(dat); dat = NULL; } \
|
|
|
|
}
|
|
|
|
|
2008-06-20 20:08:45 +00:00
|
|
|
#undef __UNUSED__
|
|
|
|
#define __UNUSED__ __attribute__ ((unused))
|
|
|
|
|
2008-04-01 21:30:41 +00:00
|
|
|
/* ECDB Global Variables */
|
|
|
|
typedef struct _Ecdb_Main Ecdb_Main;
|
|
|
|
struct _Ecdb_Main
|
|
|
|
{
|
2008-08-04 23:28:43 +00:00
|
|
|
Ecore_Evas *main_win_ee;
|
2008-04-01 21:30:41 +00:00
|
|
|
Ecore_List *drives;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern Ecdb_Main *em;
|
|
|
|
|
2008-04-07 01:04:15 +00:00
|
|
|
/* Callbacks */
|
|
|
|
extern int ECDB_DRIVE_ACTION_FINISHED;
|
|
|
|
extern int ECDB_DRIVE_ACTION_BEGUN;
|
|
|
|
extern int ECDB_DRIVE_ACTION_UPDATE;
|
|
|
|
|
2008-05-15 00:14:33 +00:00
|
|
|
#include "ecdb_common.h"
|
2008-04-01 21:30:41 +00:00
|
|
|
#include "ecdb_drives.h"
|
|
|
|
#include "ecdb_image.h"
|
|
|
|
#include "ecdb_burn.h"
|
|
|
|
#include "ecdb_misc.h"
|
2008-05-23 03:33:04 +00:00
|
|
|
#include "ecdb_audio.h"
|
2008-06-06 03:02:27 +00:00
|
|
|
#include "ecdb_gui.h"
|
2008-04-01 21:30:41 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|