From 5dd54c58b4d65b28751fda3ba2acbfe71ea7a75f Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Tue, 22 Apr 2008 16:16:28 +0200 Subject: libsmbconf: add a struct smbconf_service to hold the parameter names + values. Michael (This used to be commit 8118a8348f36b28fa4d46b42a104097cefa33a4d) --- source3/lib/smbconf/smbconf.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'source3/lib') diff --git a/source3/lib/smbconf/smbconf.h b/source3/lib/smbconf/smbconf.h index 589d14ec64..86ee3ed231 100644 --- a/source3/lib/smbconf/smbconf.h +++ b/source3/lib/smbconf/smbconf.h @@ -27,6 +27,13 @@ struct smbconf_csn { uint64_t csn; }; +struct smbconf_service { + char *name; + uint32_t num_params; + char **param_names; + char **param_values; +}; + /** * intialization dispatcher function. -- cgit