summaryrefslogtreecommitdiffstats
path: root/lib/param/s3_param.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/param/s3_param.h')
-rw-r--r--lib/param/s3_param.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/lib/param/s3_param.h b/lib/param/s3_param.h
new file mode 100644
index 0000000..60a2911
--- /dev/null
+++ b/lib/param/s3_param.h
@@ -0,0 +1,23 @@
+#ifndef __S3_PARAM_H__
+#define __S3_PARAM_H__
+
+struct loadparm_s3_helpers
+{
+ void * (*get_parm_ptr)(struct loadparm_service *service, struct parm_struct *parm);
+ struct loadparm_service * (*get_service)(const char *service_name);
+ struct loadparm_service * (*get_servicebynum)(int snum);
+ int (*getservicebyname)(const char *, struct loadparm_service *);
+ int (*get_numservices)(void);
+ bool (*load)(const char *filename);
+ bool (*store_cmdline)(const char *pszParmName, const char *pszParmValue);
+ void (*dump)(FILE *f, bool show_defaults, int maxtoprint);
+ bool (*lp_include)(struct loadparm_context*, struct loadparm_service *,
+ const char *, char **);
+ void (*init_ldap_debugging)(void);
+ bool (*do_section)(const char *pszSectionName, void *userdata);
+ void (*init_globals)(struct loadparm_context *lp_ctx, bool reinit_globals);
+ struct loadparm_global *globals;
+ unsigned int *flags;
+};
+
+#endif /* __S3_PARAM_H__ */