1/*
2 * Copyright (C) Joerg Lenneis 2003
3 * Copyright (C) Frank Lahm 2010
4 * All Rights Reserved.  See COPYING.
5 */
6
7#ifndef CNID_DBD_PACK_H
8#define CNID_DBD_PACK_H 1
9
10#include <db.h>
11#include <atalk/cnid_dbd_private.h>
12
13extern unsigned char *pack_cnid_data(struct cnid_dbd_rqst *);
14extern int didname(DB *dbp, const DBT *pkey, const DBT *pdata, DBT *skey);
15extern int devino(DB *dbp, const DBT *pkey, const DBT *pdata, DBT *skey);
16extern int idxname(DB *dbp, const DBT *pkey, const DBT *pdata, DBT *skey);
17
18#endif /* CNID_DBD_PACK_H */
19