blob: 365263f2f105f6187ab367b30465d68b14982b2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*
* System Security Services Daemon. NSS Interface
*
* Copyright (C) Simo Sorce 2007
*
* You can used this header file in any way you see fit provided copyright
* notices are preserved.
*
*/
#ifndef _SSSERR_H
#define _SSSERR_H
#define SSSE_OK 0
#define SSSE_INTERR -10 /* internal error */
#define SSSE_BADDB -11 /* bad database */
#endif
|