~lightdm-team/lightdm/1.4

« back to all changes in this revision

Viewing changes to libldmgreeter/session.h

  • Committer: robert.ancell at gmail
  • Date: 2010-06-27 05:16:48 UTC
  • Revision ID: robert.ancell@gmail.com-20100627051648-c1b2bq4fqeenclyw
Fix up documentation and tweak UI

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#define LDM_IS_SESSION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), LDM_TYPE_SESSION))
24
24
#define LDM_SESSION_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), LDM_TYPE_SESSION, LdmSessionClass))
25
25
 
26
 
typedef struct LdmSessionPrivate LdmSessionPrivate;
 
26
typedef struct _LdmSession        LdmSession;
 
27
typedef struct _LdmSessionClass   LdmSessionClass;
 
28
typedef struct _LdmSessionPrivate LdmSessionPrivate;
27
29
 
28
 
typedef struct
 
30
struct _LdmSession
29
31
{
30
32
    GObject            parent_instance;
31
33
    LdmSessionPrivate *priv;
32
 
} LdmSession;
 
34
};
33
35
 
34
 
typedef struct
 
36
struct _LdmSessionClass
35
37
{
36
38
    GObjectClass parent_class;
37
 
} LdmSessionClass;
 
39
};
38
40
 
39
41
GType ldm_session_get_type (void);
40
42
 
41
43
LdmSession *ldm_session_new (const gchar *key, const gchar *name, const gchar *comment);
42
44
 
43
 
const gchar *ldm_session_get_key (LdmSession *user);
44
 
 
45
 
const gchar *ldm_session_get_name (LdmSession *user);
46
 
 
47
 
const gchar *ldm_session_get_comment (LdmSession *user);
 
45
const gchar *ldm_session_get_key (LdmSession *session);
 
46
 
 
47
const gchar *ldm_session_get_name (LdmSession *session);
 
48
 
 
49
const gchar *ldm_session_get_comment (LdmSession *session);
48
50
 
49
51
G_END_DECLS
50
52