diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-02-21 16:11:13 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-02-21 16:11:13 +0100 |
commit | 10e7f9f02d3b952c924e7c98ce01d27cc6baac84 (patch) | |
tree | cdc3655b8ebf084031aa84c4967333d176994315 /source4/winbind/idmap.h | |
parent | 426e7fef1f080f22a10e89cebae58a40db8bc77f (diff) | |
parent | 141f4b8f838f750b979eeef11743244008bfa339 (diff) | |
download | samba-10e7f9f02d3b952c924e7c98ce01d27cc6baac84.tar.gz samba-10e7f9f02d3b952c924e7c98ce01d27cc6baac84.tar.bz2 samba-10e7f9f02d3b952c924e7c98ce01d27cc6baac84.zip |
Merge branch 'v4-0-test' of ssh://git.samba.org/data/git/samba into v4-0-trivial
(This used to be commit 52a8d06f00ab3900e2186e047902dbcbe3138a01)
Diffstat (limited to 'source4/winbind/idmap.h')
-rw-r--r-- | source4/winbind/idmap.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/source4/winbind/idmap.h b/source4/winbind/idmap.h new file mode 100644 index 0000000000..8781819be0 --- /dev/null +++ b/source4/winbind/idmap.h @@ -0,0 +1,33 @@ +/* + Unix SMB/CIFS implementation. + + Map SIDs to uids/gids and back + + Copyright (C) Kai Blin 2008 + + 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 _IDMAP_H_ +#define _IDMAP_H_ + +struct idmap_context { + struct loadparm_context *lp_ctx; + struct ldb_context *ldb_ctx; +}; + +#include "winbind/idmap_proto.h" + +#endif + |