blob: a2b96bb0472a2960162377e7e1354c636fc3becc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/* This is a generated file */
#ifndef __hdb_private_h__
#define __hdb_private_h__
#include <stdarg.h>
krb5_error_code
_hdb_fetch (
krb5_context /*context*/,
HDB */*db*/,
unsigned /*flags*/,
krb5_principal /*principal*/,
enum hdb_ent_type /*ent_type*/,
hdb_entry */*entry*/);
krb5_error_code
_hdb_remove (
krb5_context /*context*/,
HDB */*db*/,
hdb_entry */*entry*/);
krb5_error_code
_hdb_store (
krb5_context /*context*/,
HDB */*db*/,
unsigned /*flags*/,
hdb_entry */*entry*/);
#endif /* __hdb_private_h__ */
|