summaryrefslogtreecommitdiff
path: root/source3/include
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2011-06-29 13:18:57 +1000
committerAndrew Bartlett <abartlet@samba.org>2011-06-29 15:44:08 +1000
commit7198d540e8abc31f831e9c13a031b905604176c6 (patch)
tree005d4c04d366901b76719e4f6144d1a522134d25 /source3/include
parent21756b7c7d3048ce3396ab63aebc80babf4819e9 (diff)
downloadsamba-7198d540e8abc31f831e9c13a031b905604176c6.tar.gz
samba-7198d540e8abc31f831e9c13a031b905604176c6.tar.bz2
samba-7198d540e8abc31f831e9c13a031b905604176c6.zip
param: Merge struct parm_struct definitions
This will allow the parameter tables to be shared between source3 and source4. Andrew Bartlett
Diffstat (limited to 'source3/include')
-rw-r--r--source3/include/smb.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h
index 25e3bacc72..152db48db5 100644
--- a/source3/include/smb.h
+++ b/source3/include/smb.h
@@ -726,13 +726,15 @@ struct enum_list {
};
struct loadparm_service;
+struct loadparm_context;
struct parm_struct {
const char *label;
parm_type type;
parm_class p_class;
offset_t offset;
- bool (*special)(int snum, const char *, char **);
+ bool (*special)(struct loadparm_context *lpcfg_ctx,
+ int snum, const char *, char **);
const struct enum_list *enum_list;
unsigned flags;
union {