summaryrefslogtreecommitdiff
path: root/source4/ntvfs/sysdep
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2006-04-07 14:14:27 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:00:47 -0500
commit7672505c72c34a5e35dc05cf3fdc0d49e974a690 (patch)
tree48026cf6c9e6294e303c7790e2e7ea0fea2c4666 /source4/ntvfs/sysdep
parent3c81a240c023a225b38c79208234e988be3c0081 (diff)
downloadsamba-7672505c72c34a5e35dc05cf3fdc0d49e974a690.tar.gz
samba-7672505c72c34a5e35dc05cf3fdc0d49e974a690.tar.bz2
samba-7672505c72c34a5e35dc05cf3fdc0d49e974a690.zip
r14966: make more functions _PUBLIC_
metze (This used to be commit 193f7da254cce40ab30fda9e99b8cd07e0b0a0a8)
Diffstat (limited to 'source4/ntvfs/sysdep')
-rw-r--r--source4/ntvfs/sysdep/sys_notify.c14
1 files changed, 7 insertions, 7 deletions
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;