re-run make idl.
authorGünther Deschner <gd@samba.org>
Tue, 9 Sep 2008 17:20:05 +0000 (19:20 +0200)
committerGünther Deschner <gd@samba.org>
Thu, 11 Sep 2008 12:35:57 +0000 (14:35 +0200)
Guenther
(This used to be commit 74edd3e8535620cad69f8659ff52a3142217c310)

source3/librpc/gen_ndr/libnetapi.h
source3/librpc/gen_ndr/ndr_libnetapi.c
source3/librpc/gen_ndr/ndr_libnetapi.h

index d61a562a9577e426751b428d8d0b227adc36c7d5..864926f1395a1b553e77f165fcc034fa16d7ee6e 100644 (file)
@@ -1393,4 +1393,17 @@ struct NetShareSetInfo {
 
 };
 
+
+struct NetFileClose {
+       struct {
+               const char * server_name;
+               uint32_t fileid;
+       } in;
+
+       struct {
+               enum NET_API_STATUS result;
+       } out;
+
+};
+
 #endif /* _HEADER_libnetapi */
index 48078a93f1f8f20b50270d57bdc0f06f865039d0..de5dcaeaa100d3919987f1c69aedce1f86fa2b56 100644 (file)
@@ -3868,3 +3868,26 @@ _PUBLIC_ void ndr_print_NetShareSetInfo(struct ndr_print *ndr, const char *name,
        ndr->depth--;
 }
 
+_PUBLIC_ void ndr_print_NetFileClose(struct ndr_print *ndr, const char *name, int flags, const struct NetFileClose *r)
+{
+       ndr_print_struct(ndr, name, "NetFileClose");
+       ndr->depth++;
+       if (flags & NDR_SET_VALUES) {
+               ndr->flags |= LIBNDR_PRINT_SET_VALUES;
+       }
+       if (flags & NDR_IN) {
+               ndr_print_struct(ndr, "in", "NetFileClose");
+               ndr->depth++;
+               ndr_print_string(ndr, "server_name", r->in.server_name);
+               ndr_print_uint32(ndr, "fileid", r->in.fileid);
+               ndr->depth--;
+       }
+       if (flags & NDR_OUT) {
+               ndr_print_struct(ndr, "out", "NetFileClose");
+               ndr->depth++;
+               ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
+               ndr->depth--;
+       }
+       ndr->depth--;
+}
+
index d435fe05881fea54afe460f17c2b6c1ca3baf73d..31b7139db07bad0633b12ab94649c3ba290ddd0d 100644 (file)
@@ -98,7 +98,9 @@
 
 #define NDR_NETSHARESETINFO (0x2d)
 
-#define NDR_LIBNETAPI_CALL_COUNT (46)
+#define NDR_NETFILECLOSE (0x2e)
+
+#define NDR_LIBNETAPI_CALL_COUNT (47)
 enum ndr_err_code ndr_push_NET_API_STATUS(struct ndr_push *ndr, int ndr_flags, enum NET_API_STATUS r);
 enum ndr_err_code ndr_pull_NET_API_STATUS(struct ndr_pull *ndr, int ndr_flags, enum NET_API_STATUS *r);
 void ndr_print_NET_API_STATUS(struct ndr_print *ndr, const char *name, enum NET_API_STATUS r);
@@ -375,4 +377,7 @@ void ndr_print_NetShareGetInfo(struct ndr_print *ndr, const char *name, int flag
 enum ndr_err_code ndr_push_NetShareSetInfo(struct ndr_push *ndr, int flags, const struct NetShareSetInfo *r);
 enum ndr_err_code ndr_pull_NetShareSetInfo(struct ndr_pull *ndr, int flags, struct NetShareSetInfo *r);
 void ndr_print_NetShareSetInfo(struct ndr_print *ndr, const char *name, int flags, const struct NetShareSetInfo *r);
+enum ndr_err_code ndr_push_NetFileClose(struct ndr_push *ndr, int flags, const struct NetFileClose *r);
+enum ndr_err_code ndr_pull_NetFileClose(struct ndr_pull *ndr, int flags, struct NetFileClose *r);
+void ndr_print_NetFileClose(struct ndr_print *ndr, const char *name, int flags, const struct NetFileClose *r);
 #endif /* _HEADER_NDR_libnetapi */