summaryrefslogtreecommitdiff
path: root/lib/param/param_structs.h
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2011-07-07 22:03:30 +1000
committerAndrew Bartlett <abartlet@samba.org>2011-07-08 11:23:23 +0200
commit2fcbfcd004685482c40de169bf904d7fa92ac165 (patch)
tree91123474deb7ff37147e5dd8abc3b0cb08ea038b /lib/param/param_structs.h
parentf50f9374b584b881aac0304aeefc56ebfd6b745a (diff)
downloadsamba-2fcbfcd004685482c40de169bf904d7fa92ac165.tar.gz
samba-2fcbfcd004685482c40de169bf904d7fa92ac165.tar.bz2
samba-2fcbfcd004685482c40de169bf904d7fa92ac165.zip
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
Diffstat (limited to 'lib/param/param_structs.h')
-rw-r--r--lib/param/param_structs.h13
1 files changed, 13 insertions, 0 deletions
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"