diff options
author | Michael Adam <obnox@samba.org> | 2011-08-16 16:02:19 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2011-10-11 14:17:55 +0200 |
commit | c768121661cf5e845ceca3b04181937c36106484 (patch) | |
tree | b25b0972dcfa1a013c77cfefd860d0ecbefbbe8c /source3/lib/dbwrap | |
parent | 38f7f8e44dd4392097f780175f8599076002f461 (diff) | |
download | samba-c768121661cf5e845ceca3b04181937c36106484.tar.gz samba-c768121661cf5e845ceca3b04181937c36106484.tar.bz2 samba-c768121661cf5e845ceca3b04181937c36106484.zip |
s3:dbwrap: move the db_open_file() prototype to a new header dbwrap_file.h
Diffstat (limited to 'source3/lib/dbwrap')
-rw-r--r-- | source3/lib/dbwrap/dbwrap.h | 8 | ||||
-rw-r--r-- | source3/lib/dbwrap/dbwrap_file.c | 1 | ||||
-rw-r--r-- | source3/lib/dbwrap/dbwrap_file.h | 36 |
3 files changed, 37 insertions, 8 deletions
diff --git a/source3/lib/dbwrap/dbwrap.h b/source3/lib/dbwrap/dbwrap.h index 0945855c23..ab52783388 100644 --- a/source3/lib/dbwrap/dbwrap.h +++ b/source3/lib/dbwrap/dbwrap.h @@ -58,14 +58,6 @@ struct db_context { struct db_context *db_open_rbt(TALLOC_CTX *mem_ctx); -struct messaging_context; - -struct db_context *db_open_file(TALLOC_CTX *mem_ctx, - struct messaging_context *msg_ctx, - const char *name, - int hash_size, int tdb_flags, - int open_flags, mode_t mode); - NTSTATUS dbwrap_delete(struct db_context *db, TDB_DATA key); NTSTATUS dbwrap_store(struct db_context *db, TDB_DATA key, diff --git a/source3/lib/dbwrap/dbwrap_file.c b/source3/lib/dbwrap/dbwrap_file.c index 6ecd72810d..2be7b98a7f 100644 --- a/source3/lib/dbwrap/dbwrap_file.c +++ b/source3/lib/dbwrap/dbwrap_file.c @@ -18,6 +18,7 @@ */ #include "includes.h" +#include "dbwrap/dbwrap_file.h" struct db_file_ctx { const char *dirname; diff --git a/source3/lib/dbwrap/dbwrap_file.h b/source3/lib/dbwrap/dbwrap_file.h new file mode 100644 index 0000000000..002f64dce5 --- /dev/null +++ b/source3/lib/dbwrap/dbwrap_file.h @@ -0,0 +1,36 @@ +/* + Unix SMB/CIFS implementation. + Database interface using a file per record + Copyright (C) Volker Lendecke 2005 + + 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 3 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, see <http://www.gnu.org/licenses/>. +*/ + +#ifndef __DBWRAP_FILE_H__ +#define __DBWRAP_FILE_H__ + +#include <talloc.h> + +struct db_context; + +struct messaging_context; + +struct db_context *db_open_file(TALLOC_CTX *mem_ctx, + struct messaging_context *msg_ctx, + const char *name, + int hash_size, int tdb_flags, + int open_flags, mode_t mode); + + +#endif /* __DBWRAP_FILE_H__ */ |