diff options
author | Stefan Metzmacher <metze@samba.org> | 2004-02-12 15:59:16 +0000 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2004-02-12 15:59:16 +0000 |
commit | 9a8cd1aa27204096d64b99c4dbed73f498e3ccfe (patch) | |
tree | 7e57a6415186dcae6786a3b232ca96f9ef0f112f /source4/tdb/tdbutil.h | |
parent | 6647ff74306dd6985c32c75b177707b5c60b23b3 (diff) | |
download | samba-9a8cd1aa27204096d64b99c4dbed73f498e3ccfe.tar.gz samba-9a8cd1aa27204096d64b99c4dbed73f498e3ccfe.tar.bz2 samba-9a8cd1aa27204096d64b99c4dbed73f498e3ccfe.zip |
move the tdb lib code to lib/tdb/*
metze
(This used to be commit 5ebd6fb761370cbe2835a2a2631e24e35bcaffb4)
Diffstat (limited to 'source4/tdb/tdbutil.h')
-rw-r--r-- | source4/tdb/tdbutil.h | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/source4/tdb/tdbutil.h b/source4/tdb/tdbutil.h deleted file mode 100644 index 01473446a1..0000000000 --- a/source4/tdb/tdbutil.h +++ /dev/null @@ -1,37 +0,0 @@ -/* - 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__ */ |