gmyth/src/gmyth_recprofile.h
branchtrunk
changeset 385 ab93678082df
parent 383 4071ea7f32e6
child 386 4184f56767b8
     1.1 --- a/gmyth/src/gmyth_recprofile.h	Fri Mar 02 21:25:50 2007 +0000
     1.2 +++ b/gmyth/src/gmyth_recprofile.h	Sun Mar 04 06:53:50 2007 +0000
     1.3 @@ -51,17 +51,17 @@
     1.4  struct _GMythRecProfileClass
     1.5  {
     1.6    GObjectClass parent_class;
     1.7 -
     1.8 +  gint teste;
     1.9    /* callbacks */
    1.10  };
    1.11  
    1.12  struct _GMythRecProfile
    1.13  {
    1.14    gint	id;
    1.15 -  GString* name;
    1.16 -  GString* group;
    1.17 -  GString* vcodec;
    1.18 -  GString* acodec;
    1.19 +  gchar* name;
    1.20 +  gchar* group;
    1.21 +  gchar* vcodec;
    1.22 +  gchar* acodec;
    1.23  };
    1.24  
    1.25  
    1.26 @@ -78,6 +78,12 @@
    1.27  gint gmyth_recprofile_del_profile_list (GMythBackendInfo *backend_info,\
    1.28                                          gint id);
    1.29  
    1.30 +gint gmyth_recprofile_set_acodec (GMythRecProfile* rec, gchar* acodec);
    1.31 +gint gmyth_recprofile_set_vcodec (GMythRecProfile* rec, gchar* vcodec);
    1.32 +gint gmyth_recprofile_set_group (GMythRecProfile* rec, gchar* group);
    1.33 +gint gmyth_recprofile_set_name (GMythRecProfile* rec, gchar* name);
    1.34 +gint gmyth_recprofile_set_id (GMythRecProfile* rec, gint id);
    1.35 +
    1.36  G_END_DECLS
    1.37  
    1.38  #endif /*_GMYTH_RECPROFILE_H*/