From 7672505c72c34a5e35dc05cf3fdc0d49e974a690 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 7 Apr 2006 14:14:27 +0000 Subject: r14966: make more functions _PUBLIC_ metze (This used to be commit 193f7da254cce40ab30fda9e99b8cd07e0b0a0a8) --- source4/ntvfs/sysdep/sys_notify.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'source4/ntvfs/sysdep/sys_notify.c') diff --git a/source4/ntvfs/sysdep/sys_notify.c b/source4/ntvfs/sysdep/sys_notify.c index a74312f32b..c4fa4647d1 100644 --- a/source4/ntvfs/sysdep/sys_notify.c +++ b/source4/ntvfs/sysdep/sys_notify.c @@ -37,9 +37,9 @@ static uint32_t num_backends; /* initialise a system change notify backend */ -struct sys_notify_context *sys_notify_context_create(int snum, - TALLOC_CTX *mem_ctx, - struct event_context *ev) +_PUBLIC_ struct sys_notify_context *sys_notify_context_create(int snum, + TALLOC_CTX *mem_ctx, + struct event_context *ev) { struct sys_notify_context *ctx; const char *bname; @@ -93,8 +93,8 @@ struct sys_notify_context *sys_notify_context_create(int snum, bits to remove ones handled by this backend. Any remaining bits will be handled by the generic notify layer */ -NTSTATUS sys_notify_watch(struct sys_notify_context *ctx, struct notify_entry *e, - sys_notify_callback_t callback, void *private, void **handle) +_PUBLIC_ NTSTATUS sys_notify_watch(struct sys_notify_context *ctx, struct notify_entry *e, + sys_notify_callback_t callback, void *private, void **handle) { if (!ctx->notify_watch) { return NT_STATUS_INVALID_SYSTEM_SERVICE; @@ -105,7 +105,7 @@ NTSTATUS sys_notify_watch(struct sys_notify_context *ctx, struct notify_entry *e /* register a notify backend */ -NTSTATUS sys_notify_register(struct sys_notify_backend *backend) +_PUBLIC_ NTSTATUS sys_notify_register(struct sys_notify_backend *backend) { struct sys_notify_backend *b; b = talloc_realloc(talloc_autofree_context(), backends, @@ -117,7 +117,7 @@ NTSTATUS sys_notify_register(struct sys_notify_backend *backend) return NT_STATUS_OK; } -NTSTATUS sys_notify_init(void) +_PUBLIC_ NTSTATUS sys_notify_init(void) { static BOOL initialized = False; -- cgit