summaryrefslogtreecommitdiffstats
path: root/source/ntvfs/ntvfs_util.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2006-01-11 10:53:52 +0000
committerStefan Metzmacher <metze@samba.org>2006-01-11 10:53:52 +0000
commitd19bae76b70757e282d4657d6faafa1398676fa1 (patch)
tree8bc1994d4066c9537a4ef3164d33c7f538cc9d9d /source/ntvfs/ntvfs_util.c
parentcfacc8fafaf10be51673785dce675d469a6eebd6 (diff)
downloadsamba-d19bae76b70757e282d4657d6faafa1398676fa1.tar.gz
samba-d19bae76b70757e282d4657d6faafa1398676fa1.tar.xz
samba-d19bae76b70757e282d4657d6faafa1398676fa1.zip
r12838: make the ntvfs function public
metze
Diffstat (limited to 'source/ntvfs/ntvfs_util.c')
-rw-r--r--source/ntvfs/ntvfs_util.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/ntvfs/ntvfs_util.c b/source/ntvfs/ntvfs_util.c
index ad31865425f..861f266271b 100644
--- a/source/ntvfs/ntvfs_util.c
+++ b/source/ntvfs/ntvfs_util.c
@@ -27,10 +27,10 @@
#include "ntvfs/ntvfs.h"
-NTSTATUS ntvfs_async_state_push(struct smbsrv_request *req,
- void *private_data,
- void (*send_fn)(struct smbsrv_request *),
- struct ntvfs_module_context *ntvfs)
+_PUBLIC_ NTSTATUS ntvfs_async_state_push(struct smbsrv_request *req,
+ void *private_data,
+ void (*send_fn)(struct smbsrv_request *),
+ struct ntvfs_module_context *ntvfs)
{
struct ntvfs_async_state *async;
@@ -51,7 +51,7 @@ NTSTATUS ntvfs_async_state_push(struct smbsrv_request *req,
return NT_STATUS_OK;
}
-void ntvfs_async_state_pop(struct smbsrv_request *req)
+_PUBLIC_ void ntvfs_async_state_pop(struct smbsrv_request *req)
{
struct ntvfs_async_state *async;