diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-06-29 13:18:57 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-06-29 15:44:08 +1000 |
commit | 7198d540e8abc31f831e9c13a031b905604176c6 (patch) | |
tree | 005d4c04d366901b76719e4f6144d1a522134d25 /source3/include | |
parent | 21756b7c7d3048ce3396ab63aebc80babf4819e9 (diff) | |
download | samba-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.h | 4 |
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 { |