summaryrefslogtreecommitdiff
path: root/source3/libnet
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2010-07-13 23:35:25 +0200
committerGünther Deschner <gd@samba.org>2010-07-13 23:39:20 +0200
commit7dad3251e3a2e672441e8306f5a015dc32019657 (patch)
tree1012d30589cbfab96840b0c14dc395f770e1dab3 /source3/libnet
parent80b47fcb0a73fb97a1b918173a61c55831239a0a (diff)
downloadsamba-7dad3251e3a2e672441e8306f5a015dc32019657.tar.gz
samba-7dad3251e3a2e672441e8306f5a015dc32019657.tar.bz2
samba-7dad3251e3a2e672441e8306f5a015dc32019657.zip
s3-libnet: add missing header file, sorry.
Guenther
Diffstat (limited to 'source3/libnet')
-rw-r--r--source3/libnet/libnet_join.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/source3/libnet/libnet_join.h b/source3/libnet/libnet_join.h
new file mode 100644
index 0000000000..5659828a5c
--- /dev/null
+++ b/source3/libnet/libnet_join.h
@@ -0,0 +1,13 @@
+/* The following definitions come from libnet/libnet_join.c */
+
+NTSTATUS libnet_join_ok(const char *netbios_domain_name,
+ const char *machine_name,
+ const char *dc_name);
+WERROR libnet_init_JoinCtx(TALLOC_CTX *mem_ctx,
+ struct libnet_JoinCtx **r);
+WERROR libnet_init_UnjoinCtx(TALLOC_CTX *mem_ctx,
+ struct libnet_UnjoinCtx **r);
+WERROR libnet_Join(TALLOC_CTX *mem_ctx,
+ struct libnet_JoinCtx *r);
+WERROR libnet_Unjoin(TALLOC_CTX *mem_ctx,
+ struct libnet_UnjoinCtx *r);