doc-xml/smbdotconf: fix server [min|max] protocol documentation
[Samba/gebeck_regimport.git] / source4 / winbind / idmap.h
blob676955c2b24ec871cdae5d8f1a7ea47a23ab9610
1 /*
2 Unix SMB/CIFS implementation.
4 Map SIDs to uids/gids and back
6 Copyright (C) Kai Blin 2008
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #ifndef _WINBIND_IDMAP_H_
23 #define _WINBIND_IDMAP_H_
25 #include "librpc/gen_ndr/idmap.h"
27 struct idmap_context {
28 struct loadparm_context *lp_ctx;
29 struct ldb_context *ldb_ctx;
30 struct dom_sid *unix_groups_sid;
31 struct dom_sid *unix_users_sid;
32 struct ldb_context *samdb;
35 struct tevent_context;
37 #include "winbind/idmap_proto.h"
39 #endif