~ubuntu-branches/ubuntu/wily/francine/wily-proposed

« back to all changes in this revision

Viewing changes to src/pam_login.h

  • Committer: Bazaar Package Importer
  • Author(s): Gerfried Fuchs
  • Date: 2001-12-09 22:22:10 UTC
  • Revision ID: james.westby@ubuntu.com-20011209222210-qcgm7p96wkbclue6
Tags: 0.99.8orig-3
Fixed a spelling typo that I missed in the last update.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Id: pam_login.h,v 1.4 2001/04/22 15:20:38 japh Exp $ */
 
2
#ifndef __HAVE_PAM_LOGIN_H__
 
3
#define __HAVE_PAM_LOGIN_H__
 
4
 
 
5
#include "config.h"
 
6
#if HAVE_SECURITY_PAM_APPL_H
 
7
#include <security/pam_appl.h>
 
8
#endif
 
9
 
 
10
void pamd_set_user(char *usn, char *pswd);
 
11
void pamd_set_location(char *ln, char *rh);
 
12
int pam_pamconv(int num_msg, const struct pam_message **msg,
 
13
                struct pam_response **resp, void *appdata_ptr);
 
14
int pam_startpam(void);
 
15
int pam_endpam(void);
 
16
int pam_authenticatepam(void);
 
17
int pam_startpamsession(void);
 
18
int pam_endpamsession(void);
 
19
 
 
20
/* I know, this is ugly -- ak */
 
21
char * pam_user;
 
22
 
 
23
#endif