diff options
author | Stefan Metzmacher <metze@samba.org> | 2004-05-24 16:27:23 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:56:02 -0500 |
commit | a3d61e0485c70ec5215c34b6caf40e2e6c6c5338 (patch) | |
tree | c6dd1cdffceadf0e88f5ddbde8507c49478f55fa /source4/lib/tdb/include/tdbutil.h | |
parent | 29a93d26cfc17dad96c74da9b05535b38552e4c0 (diff) | |
download | samba-a3d61e0485c70ec5215c34b6caf40e2e6c6c5338.tar.gz samba-a3d61e0485c70ec5215c34b6caf40e2e6c6c5338.tar.bz2 samba-a3d61e0485c70ec5215c34b6caf40e2e6c6c5338.zip |
r848: convert lib/tdb into the same layout as lib/ldb
metze
(This used to be commit bacab322ce89979f0ad0811cd15b73d81eceb69d)
Diffstat (limited to 'source4/lib/tdb/include/tdbutil.h')
-rw-r--r-- | source4/lib/tdb/include/tdbutil.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/source4/lib/tdb/include/tdbutil.h b/source4/lib/tdb/include/tdbutil.h new file mode 100644 index 0000000000..01473446a1 --- /dev/null +++ b/source4/lib/tdb/include/tdbutil.h @@ -0,0 +1,37 @@ +/* + Unix SMB/CIFS implementation. + tdb utility functions + Copyright (C) Andrew Tridgell 1999 + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +*/ + +#ifndef __TDBUTIL_H__ +#define __TDBUTIL_H__ + + +/* single node of a list returned by tdb_search_keys */ +typedef struct keys_node +{ + struct keys_node *prev, *next; + TDB_DATA node_key; +} TDB_LIST_NODE; + + +TDB_LIST_NODE *tdb_search_keys(TDB_CONTEXT*, const char*); +void tdb_search_list_free(TDB_LIST_NODE*); + + +#endif /* __TDBUTIL_H__ */ |