From 2fcbfcd004685482c40de169bf904d7fa92ac165 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Thu, 7 Jul 2011 22:03:30 +1000 Subject: param: Move per-share parameters into a seperate file, to share with s3 This will allow the struct loadparm_service to be in common between the two loadparm implementations in the tree. Andrew Bartlett --- lib/param/param_structs.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 lib/param/param_structs.h (limited to 'lib/param/param_structs.h') diff --git a/lib/param/param_structs.h b/lib/param/param_structs.h new file mode 100644 index 0000000000..f076ce15fa --- /dev/null +++ b/lib/param/param_structs.h @@ -0,0 +1,13 @@ +#define LOADPARM_EXTRA_LOCALS \ + struct parmlist_entry *param_opt; \ + char *szService; \ + char *szCopy; \ + char *szInclude; \ + char *szPrintername; \ + int bAvailable; \ + int iMaxPrintJobs; \ + char *volume; \ + struct bitmap *copymap; \ + char dummy[3]; /* for alignment */ + +#include "param_local.h" -- cgit