~ubuntu-branches/ubuntu/jaunty/gnome-screensaver/jaunty

« back to all changes in this revision

Viewing changes to src/passwd-helper.h

  • Committer: Bazaar Package Importer
  • Author(s): Oliver Grawert
  • Date: 2005-10-10 00:18:18 UTC
  • Revision ID: james.westby@ubuntu.com-20051010001818-3mujs05r8rht7xi1
Tags: upstream-0.0.15
ImportĀ upstreamĀ versionĀ 0.0.15

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
 * passwd-helper.c --- verifying typed passwords with external helper program
 
4
 *
 
5
 * written by Olaf Kirch <okir@suse.de>
 
6
 * xscreensaver, Copyright (c) 1993-2004 Jamie Zawinski <jwz@jwz.org>
 
7
 *
 
8
 * Permission to use, copy, modify, distribute, and sell this software and its
 
9
 * documentation for any purpose is hereby granted without fee, provided that
 
10
 * the above copyright notice appear in all copies and that both that
 
11
 * copyright notice and this permission notice appear in supporting
 
12
 * documentation.  No representations are made about the suitability of this
 
13
 * software for any purpose.  It is provided "as is" without express or 
 
14
 * implied warranty.
 
15
 *
 
16
 */
 
17
 
 
18
#ifndef __GS_PASSWD_HELPER_H
 
19
#define __GS_PASSWD_HELPER_H
 
20
 
 
21
G_BEGIN_DECLS
 
22
 
 
23
gboolean ext_lock_init         (int         argc,
 
24
                                char      **argv,
 
25
                                gboolean    verbose);
 
26
gboolean ext_priv_init         (int         argc,
 
27
                                char      **argv,
 
28
                                gboolean    verbose);
 
29
gboolean ext_passwd_valid      (const char *typed_passwd,
 
30
                                gboolean    verbose);
 
31
 
 
32
G_END_DECLS
 
33
 
 
34
#endif /* __GS_PASSWD_HELPER_H */