Some small gui work and bug fixes

This commit is contained in:
Jaime Thomas
2008-06-10 03:33:53 +00:00
parent e6aae7748d
commit 1d6bc631f7
9 changed files with 112 additions and 8 deletions

View File

@ -11,6 +11,15 @@ typedef struct burn_progress BurnProgress;
typedef struct burn_drive_info BurnDriveInfo;
typedef enum burn_drive_status BurnDriveStatus;
typedef enum _Ecdb_Project_Type Ecdb_Project_Type;
enum _Ecdb_Project_Type
{
ECDB_BURN_PROJECT,
ECDB_AUDIO_PROJECT,
ECDB_ERASE_PROJECT,
ECDB_COPY_PROJECT
};
typedef struct _Ecdb_Drive_Info Ecdb_Drive_Info;
struct _Ecdb_Drive_Info
{
@ -49,6 +58,7 @@ struct _Ecdb_Project_Info
BurnProgress progress;
BurnDriveStatus stat;
Ecore_Event_Handler *ev_handler;
unsigned int type;
};
/* Typecast a pointer to an Ecdb_Source */