New database routine library.
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@1387 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
29
lib/hdb/hdb_locl.h
Normal file
29
lib/hdb/hdb_locl.h
Normal file
@@ -0,0 +1,29 @@
|
||||
/* $Id$ */
|
||||
|
||||
#ifndef __HDB_LOCL_H__
|
||||
#define __HDB_LOCL_H__
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <errno.h>
|
||||
|
||||
#include <krb5.h>
|
||||
#include <hdb.h>
|
||||
|
||||
#ifdef HAVE_DB_H
|
||||
#include <db.h>
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_NDBM_H
|
||||
#include <ndbm.h>
|
||||
#endif
|
||||
|
||||
void hdb_principal2key(krb5_context, krb5_principal, krb5_data*);
|
||||
void hdb_key2principal(krb5_context, krb5_data*, krb5_principal*);
|
||||
void hdb_entry2value(krb5_context, hdb_entry*, krb5_data*);
|
||||
void hdb_value2entry(krb5_context, krb5_data*, hdb_entry*);
|
||||
|
||||
#endif /* __HDB_LOCL_H__ */
|
Reference in New Issue
Block a user