~mfisch/brasero/update-to-3.8.0

« back to all changes in this revision

Viewing changes to src/burn-volume.h

  • Committer: Bazaar Package Importer
  • Author(s): Pedro Fragoso
  • Date: 2008-11-18 11:30:50 UTC
  • mto: (1.4.1 experimental)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: james.westby@ubuntu.com-20081118113050-yhrskmatlel0gzfm
Tags: upstream-0.8.3
ImportĀ upstreamĀ versionĀ 0.8.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
 
63
63
        struct {
64
64
                GList *children;
 
65
                guint address;
65
66
        } dir;
66
67
 
67
68
        } specific;
68
69
 
69
70
        guint isdir:1;
 
71
        guint isdir_loaded:1;
70
72
 
71
73
        /* mainly used internally */
 
74
        guint has_RR:1;
72
75
        guint relocated:1;
73
76
};
74
77
 
96
99
                         gint64 volume_start_block,
97
100
                         GError **error);
98
101
 
 
102
GList *
 
103
brasero_volume_load_directory_contents (BraseroVolSrc *vol,
 
104
                                        gint64 session_block,
 
105
                                        gint64 block,
 
106
                                        GError **error);
 
107
 
99
108
 
100
109
#define BRASERO_VOLUME_FILE_NAME(file)                  ((file)->rr_name?(file)->rr_name:(file)->name)
101
110
#define BRASERO_VOLUME_FILE_SIZE(file)                  ((file)->isdir?0:(file)->specific.file.size_bytes)