source: proiecte/PPPP/gdm/daemon/gdm-session-record.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.9 KB
Line 
1/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
2 *
3 * Copyright (C) 2006 Ray Strode <rstrode@redhat.com>
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, or (at your option)
8 * 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
18 * 02111-1307, USA.
19 */
20
21#ifndef __GDM_SESSION_RECORD_H
22#define __GDM_SESSION_RECORD_H
23
24#include <glib.h>
25
26G_BEGIN_DECLS
27
28void
29gdm_session_record_login  (GPid                  session_pid,
30                           const char           *user_name,
31                           const char           *host_name,
32                           const char           *x11_display_name,
33                           const char           *display_device);
34void
35gdm_session_record_logout (GPid                  session_pid,
36                           const char           *user_name,
37                           const char           *host_name,
38                           const char           *x11_display_name,
39                           const char           *display_device);
40void
41gdm_session_record_failed (GPid                  session_pid,
42                           const char           *user_name,
43                           const char           *host_name,
44                           const char           *x11_display_name,
45                           const char           *display_device);
46
47
48G_END_DECLS
49
50#endif /* GDM_SESSION_RECORD_H */
Note: See TracBrowser for help on using the repository browser.