diff options
author | Jeremy Allison <jra@samba.org> | 2007-04-10 18:12:25 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:19:17 -0500 |
commit | 4e0a6bd9a7a66989dc53d2682c06451afb32199e (patch) | |
tree | 2aadd14404dd44db64a877d533b4fe53b34a6e52 | |
parent | 78c57f59ac7d47425ebb450205efc981575aab8d (diff) | |
download | samba-4e0a6bd9a7a66989dc53d2682c06451afb32199e.tar.gz samba-4e0a6bd9a7a66989dc53d2682c06451afb32199e.tar.bz2 samba-4e0a6bd9a7a66989dc53d2682c06451afb32199e.zip |
r22154: Make struct smbdb_ctx an opaque pointer so users of the API
don't need to have tdb.h.
Jeremy.
(This used to be commit 512542c90a78006bda3470eed7fb6d3f6e708eed)
-rw-r--r-- | source3/include/smb_share_modes.h | 8 | ||||
-rw-r--r-- | source3/libsmb/smb_share_modes.c | 5 |
2 files changed, 7 insertions, 6 deletions
diff --git a/source3/include/smb_share_modes.h b/source3/include/smb_share_modes.h index 1e04ea496d..5ed43bda33 100644 --- a/source3/include/smb_share_modes.h +++ b/source3/include/smb_share_modes.h @@ -33,12 +33,8 @@ extern "C" { # endif #endif -#include "tdb.h" - -/* Database context handle. */ -struct smbdb_ctx { - TDB_CONTEXT *smb_tdb; -}; +/* Opaque database context handle. */ +struct smbdb_ctx; /* Share mode entry. */ /* diff --git a/source3/libsmb/smb_share_modes.c b/source3/libsmb/smb_share_modes.c index f78eaf8ca5..53f99d0f50 100644 --- a/source3/libsmb/smb_share_modes.c +++ b/source3/libsmb/smb_share_modes.c @@ -28,6 +28,11 @@ #include "includes.h" #include "smb_share_modes.h" +/* Database context handle. */ +struct smbdb_ctx { + TDB_CONTEXT *smb_tdb; +}; + /* Remove the paranoid malloc checker. */ #ifdef malloc #undef malloc |