1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-06 16:23:49 +03:00

r19668: Convert the locking params to use struct share_param instead of snum

This commit is contained in:
Volker Lendecke
2006-11-11 17:05:11 +00:00
committed by Gerald (Jerry) Carter
parent dc9cdf37e9
commit 609dbec600
5 changed files with 26 additions and 20 deletions

View File

@@ -53,6 +53,11 @@ END {
printf "BOOL %s(const struct share_params *p );\n", a[2]
}
/^FN_LOCAL_PARM_INTEGER/ {
split($0,a,"[,()]")
printf "int %s(const struct share_params *p );\n", a[2]
}
/^FN_LOCAL_LIST/ {
split($0,a,"[,()]")
printf "const char **%s(int );\n", a[2]