~jbicha/ubuntu/oneiric/gnome-shell/oneiric-3.2.2.1

« back to all changes in this revision

Viewing changes to src/gdmuser/gdm-user-private.h

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2011-09-07 09:09:05 UTC
  • mfrom: (1.1.29 upstream)
  • Revision ID: package-import@ubuntu.com-20110907090905-kbo4fewcg12zt99u
Tags: 3.1.90.1-0ubuntu1
* New upstream release.
* debian/control: Bump build-depends on new mutter
* debian/patches/01_favorite_apps.patch: Updated
* debian/patches/03_remove-glx-dependency-on-armel.patch: Refreshed
* debian/patches/04_build-without-caribou.patch
  - Build without caribou since Ubuntu uses onboard and our System 
    Settings doesn't support choosing a different screen keyboard yet

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
2
 
 *
3
 
 * Copyright (C) 2004-2005 James M. Cape <jcape@ignore-your.tv>.
4
 
 *
5
 
 * This program is free software; you can redistribute it and/or modify
6
 
 * it under the terms of the GNU General Public License as published by
7
 
 * the Free Software Foundation; either version 2 of the License, or
8
 
 * (at your option) any later version.
9
 
 *
10
 
 * This program is distributed in the hope that it will be useful,
11
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
 * GNU General Public License for more details.
14
 
 *
15
 
 * You should have received a copy of the GNU General Public License
16
 
 * along with this program; if not, write to the Free Software
17
 
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
 
 */
19
 
 
20
 
/*
21
 
 * Private interfaces to the GdmUser object
22
 
 */
23
 
 
24
 
#ifndef __GDM_USER_PRIVATE_H_
25
 
#define __GDM_USER_PRIVATE_H_
26
 
 
27
 
#include <pwd.h>
28
 
 
29
 
#include "gdm-user.h"
30
 
 
31
 
G_BEGIN_DECLS
32
 
 
33
 
void _gdm_user_update_from_object_path (GdmUser    *user,
34
 
                                        const char *object_path);
35
 
 
36
 
void _gdm_user_update_from_pwent (GdmUser             *user,
37
 
                                  const struct passwd *pwent);
38
 
 
39
 
void _gdm_user_update_login_frequency (GdmUser *user,
40
 
                                       guint64  login_frequency);
41
 
 
42
 
void _gdm_user_add_session      (GdmUser             *user,
43
 
                                 const char          *session_id);
44
 
void _gdm_user_remove_session   (GdmUser             *user,
45
 
                                 const char          *session_id);
46
 
 
47
 
G_END_DECLS
48
 
 
49
 
#endif /* !__GDM_USER_PRIVATE__ */