2008-04-01 21:30:41 +00:00
|
|
|
#include "ecdb.h"
|
|
|
|
|
|
|
|
Ecdb_Project *
|
|
|
|
ecdb_project_new(void)
|
|
|
|
{
|
|
|
|
Ecdb_Project *proj;
|
|
|
|
|
|
|
|
proj = calloc(1, sizeof(Ecdb_Project));
|
2008-05-15 00:14:33 +00:00
|
|
|
if (!proj)
|
|
|
|
return NULL;
|
|
|
|
if (!ecdb_project_init(proj))
|
|
|
|
{
|
|
|
|
FREE(proj);
|
|
|
|
return NULL;
|
|
|
|
}
|
2008-04-01 21:30:41 +00:00
|
|
|
|
|
|
|
return proj;
|
|
|
|
}
|
|
|
|
|
2008-05-15 00:14:33 +00:00
|
|
|
int
|
|
|
|
ecdb_project_init(Ecdb_Project *proj)
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2008-06-04 01:12:34 +00:00
|
|
|
void
|
|
|
|
ecdb_project_destroy(Ecdb_Project *proj)
|
|
|
|
{
|
|
|
|
free(proj);
|
|
|
|
}
|
|
|
|
|
2008-06-10 03:33:53 +00:00
|
|
|
void
|
|
|
|
ecdb_project_type_set(Ecdb_Project *proj, unsigned int t)
|
|
|
|
{
|
|
|
|
proj->type = t;
|
|
|
|
}
|
|
|
|
|
2008-04-07 01:04:15 +00:00
|
|
|
int
|
|
|
|
ecdb_shutdown(void *data, int type, void *event)
|
2008-04-01 21:30:41 +00:00
|
|
|
{
|
|
|
|
if (em->drives)
|
|
|
|
ecore_list_destroy(em->drives);
|
|
|
|
free(em);
|
2008-06-04 01:12:34 +00:00
|
|
|
|
|
|
|
if (!ecore_file_recursive_rm("/tmp/ecdb"))
|
|
|
|
printf("Removal of temporary directory failed!\n");
|
2008-04-07 01:04:15 +00:00
|
|
|
ecore_main_loop_quit();
|
2008-05-21 01:01:37 +00:00
|
|
|
return FALSE;
|
2008-04-01 21:30:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ecdb_burn_init(void)
|
|
|
|
{
|
|
|
|
burn_initialize();
|
|
|
|
burn_msgs_set_severities("NEVER", "SORRY", "ecdb: ");
|
|
|
|
burn_set_signal_handling("ecdb: ", NULL, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ecdb_image_init(void)
|
|
|
|
{
|
|
|
|
iso_init();
|
|
|
|
iso_set_msgs_severities("NEVER", "SORRY", "ecdb: ");
|
|
|
|
}
|
|
|
|
|