1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

param/share: Use static prototypes.

This commit is contained in:
Jelmer Vernooij 2010-06-13 19:21:02 +02:00
parent 09fb7fcd5f
commit f52a0d31f0
2 changed files with 15 additions and 2 deletions

View File

@ -67,7 +67,21 @@ struct share_ops {
struct loadparm_context;
#include "param/share_proto.h"
const char *share_string_option(struct share_config *scfg, const char *opt_name, const char *defval);
int share_int_option(struct share_config *scfg, const char *opt_name, int defval);
bool share_bool_option(struct share_config *scfg, const char *opt_name, bool defval);
const char **share_string_list_option(TALLOC_CTX *mem_ctx, struct share_config *scfg, const char *opt_name);
NTSTATUS share_list_all(TALLOC_CTX *mem_ctx, struct share_context *sctx, int *count, const char ***names);
NTSTATUS share_get_config(TALLOC_CTX *mem_ctx, struct share_context *sctx, const char *name, struct share_config **scfg);
NTSTATUS share_create(struct share_context *sctx, const char *name, struct share_info *info, int count);
NTSTATUS share_set(struct share_context *sctx, const char *name, struct share_info *info, int count);
NTSTATUS share_remove(struct share_context *sctx, const char *name);
NTSTATUS share_register(const struct share_ops *ops);
NTSTATUS share_get_context_by_name(TALLOC_CTX *mem_ctx, const char *backend_name,
struct tevent_context *event_ctx,
struct loadparm_context *lp_ctx,
struct share_context **ctx);
NTSTATUS share_init(void);
/* list of shares options */

View File

@ -18,7 +18,6 @@ bld.SAMBA_PYTHON('PROVISION',
bld.SAMBA_SUBSYSTEM('share',
source='share.c',
autoproto='share_proto.h',
public_headers='share.h',
deps='LIBSAMBA-UTIL'
)