From b6b84f98c0420f45c498b025d9edbeb7f830205a Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sat, 11 Nov 2006 17:05:11 +0000 Subject: r19668: Convert the locking params to use struct share_param instead of snum (This used to be commit 609dbec600048718b86cd1ecdc2ce49bbdeb803c) --- source3/script/mkproto.awk | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source3/script') diff --git a/source3/script/mkproto.awk b/source3/script/mkproto.awk index 97578b046f..65a10c856e 100644 --- a/source3/script/mkproto.awk +++ b/source3/script/mkproto.awk @@ -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] -- cgit