source: proiecte/PPPP/gdm/gui/simple-greeter/gdm-user-private.h @ 134

Last change on this file since 134 was 134, checked in by (none), 14 years ago

gdm sources with the modifications for webcam

File size: 1.6 KB
Line 
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__
25#define __GDM_USER_PRIVATE__ 1
26
27#include <pwd.h>
28
29#include "gdm-user.h"
30
31G_BEGIN_DECLS
32
33void _gdm_user_update           (GdmUser             *user,
34                                 const struct passwd *pwent);
35void _gdm_user_add_session      (GdmUser             *user,
36                                 const char          *session_id);
37void _gdm_user_remove_session   (GdmUser             *user,
38                                 const char          *session_id);
39
40void _gdm_user_icon_changed     (GdmUser             *user);
41
42void _gdm_user_show_full_display_name (GdmUser   *user);
43void _gdm_user_show_short_display_name  (GdmUser   *user);
44
45G_END_DECLS
46
47#endif /* !__GDM_USER_PRIVATE__ */
Note: See TracBrowser for help on using the repository browser.