~ubuntu-branches/ubuntu/wily/totem-pl-parser/wily

« back to all changes in this revision

Viewing changes to plparse/totem-pl-playlist.h

  • Committer: Package Import Robot
  • Author(s): Michael Biebl
  • Date: 2012-03-09 13:39:14 UTC
  • mfrom: (1.4.16) (1.5.12 sid)
  • Revision ID: package-import@ubuntu.com-20120309133914-e6iab9fcyg8cmw33
Tags: 3.2.0-1
* New upstream release.
* debian/patches/01-libquvi-0.4.patch: Removed, merged upstream.
* debian/control.in: Bump (Build-)Depends on libglib2.0-dev to (>= 2.31.0).

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
#define TOTEM_IS_PL_PLAYLIST(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TOTEM_TYPE_PL_PLAYLIST))
33
33
#define TOTEM_IS_PL_PLAYLIST_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TOTEM_TYPE_PL_PLAYLIST))
34
34
 
35
 
typedef struct TotemPlPlaylist TotemPlPlaylist;
36
 
typedef struct TotemPlPlaylistClass TotemPlPlaylistClass;
37
 
typedef struct TotemPlPlaylistIter TotemPlPlaylistIter;
38
 
 
39
35
/**
40
36
 * TotemPlPlaylist:
41
37
 *
42
38
 * All the fields in the #TotemPlPlaylist structure are private and should never be accessed directly.
43
39
 **/
44
 
struct TotemPlPlaylist {
 
40
typedef struct {
45
41
        GObject parent_instance;
46
 
};
 
42
} TotemPlPlaylist;
47
43
 
48
44
/**
49
45
 * TotemPlPlaylistClass:
 
46
 * @parent_class: the parent class
50
47
 *
51
48
 * All the fields in the #TotemPlPlaylistClass structure are private and should never be accessed directly.
52
49
 **/
53
 
struct TotemPlPlaylistClass {
 
50
typedef struct {
54
51
        GObjectClass parent_class;
55
 
};
 
52
} TotemPlPlaylistClass;
56
53
 
57
54
/**
58
55
 * TotemPlPlaylistIter:
59
56
 *
60
57
 * All the fields in the #TotemPlPlaylistIter structure are private and should never be accessed directly.
61
58
 **/
62
 
struct TotemPlPlaylistIter {
 
59
typedef struct {
 
60
        /*< private >*/
63
61
        gpointer data1;
64
62
        gpointer data2;
65
 
};
 
63
} TotemPlPlaylistIter;
66
64
 
67
65
GType totem_pl_playlist_get_type (void) G_GNUC_CONST;
68
66