libsmbconf: add open and close operations to the smbconf_ops.
[Samba.git] / source / lib / smbconf / smbconf_private.h
bloba8dc23fefc1954c538070a4d28007928cba2be7c
1 /*
2 * Unix SMB/CIFS implementation.
3 * libsmbconf - Samba configuration library
4 * Copyright (C) Michael Adam 2008
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
20 #ifndef __LIBSMBCONF_PRIVATE_H__
21 #define __LIBSMBCONF_PRIVATE_H__
23 struct smbconf_ops {
24 WERROR (*init)(struct smbconf_ctx *ctx);
25 WERROR (*open_conf)(struct smbconf_ctx *ctx);
26 int (*close_conf)(struct smbconf_ctx *ctx);
27 void (*get_csn)(struct smbconf_ctx *ctx, struct smbconf_csn *csn,
28 const char *service, const char *param);
29 WERROR (*drop)(struct smbconf_ctx *ctx);
30 WERROR (*get_share_names)(struct smbconf_ctx *ctx,
31 TALLOC_CTX *mem_ctx,
32 uint32_t *num_shares,
33 char ***share_names);
34 bool (*share_exists)(struct smbconf_ctx *ctx, const char *service);
35 WERROR (*create_share)(struct smbconf_ctx *ctx, const char *service);
36 WERROR (*get_share)(struct smbconf_ctx *ctx,
37 TALLOC_CTX *mem_ctx,
38 const char *servicename, uint32_t *num_params,
39 char ***param_names, char ***param_values);
40 WERROR (*delete_share)(struct smbconf_ctx *ctx,
41 const char *servicename);
42 WERROR (*set_parameter)(struct smbconf_ctx *ctx,
43 const char *service,
44 const char *param,
45 const char *valstr);
46 WERROR (*get_parameter)(struct smbconf_ctx *ctx,
47 TALLOC_CTX *mem_ctx,
48 const char *service,
49 const char *param,
50 char **valstr);
51 WERROR (*delete_parameter)(struct smbconf_ctx *ctx,
52 const char *service, const char *param);
55 struct smbconf_ctx {
56 NT_USER_TOKEN *token;
57 struct smbconf_ops *ops;
60 #endif