1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

re-run make idl.

Guenther
(This used to be commit c4131c995d)
This commit is contained in:
Günther Deschner 2008-07-18 23:31:17 +02:00
parent 5656fac52b
commit 8c5c924f6f
2 changed files with 27 additions and 27 deletions

View File

@ -569,7 +569,7 @@ struct NetGroupAdd {
struct { struct {
const char * server_name; const char * server_name;
uint32_t level; uint32_t level;
uint8_t *buf;/* [ref] */ uint8_t *buffer;/* [ref] */
} in; } in;
struct { struct {
@ -617,7 +617,7 @@ struct NetGroupSetInfo {
const char * server_name; const char * server_name;
const char * group_name; const char * group_name;
uint32_t level; uint32_t level;
uint8_t *buf;/* [ref] */ uint8_t *buffer;/* [ref] */
} in; } in;
struct { struct {
@ -636,7 +636,7 @@ struct NetGroupGetInfo {
} in; } in;
struct { struct {
uint8_t **buf;/* [ref] */ uint8_t **buffer;/* [ref] */
enum NET_API_STATUS result; enum NET_API_STATUS result;
} out; } out;
@ -675,7 +675,7 @@ struct NetLocalGroupAdd {
struct { struct {
const char * server_name; const char * server_name;
uint32_t level; uint32_t level;
uint8_t *buf;/* [ref] */ uint8_t *buffer;/* [ref] */
} in; } in;
struct { struct {
@ -707,7 +707,7 @@ struct NetLocalGroupGetInfo {
} in; } in;
struct { struct {
uint8_t **buf;/* [ref] */ uint8_t **buffer;/* [ref] */
enum NET_API_STATUS result; enum NET_API_STATUS result;
} out; } out;
@ -719,7 +719,7 @@ struct NetLocalGroupSetInfo {
const char * server_name; const char * server_name;
const char * group_name; const char * group_name;
uint32_t level; uint32_t level;
uint8_t *buf;/* [ref] */ uint8_t *buffer;/* [ref] */
} in; } in;
struct { struct {
@ -755,7 +755,7 @@ struct NetRemoteTOD {
} in; } in;
struct { struct {
uint8_t **buf;/* [ref] */ uint8_t **buffer;/* [ref] */
enum NET_API_STATUS result; enum NET_API_STATUS result;
} out; } out;

View File

@ -1851,9 +1851,9 @@ _PUBLIC_ void ndr_print_NetGroupAdd(struct ndr_print *ndr, const char *name, int
ndr->depth++; ndr->depth++;
ndr_print_string(ndr, "server_name", r->in.server_name); ndr_print_string(ndr, "server_name", r->in.server_name);
ndr_print_uint32(ndr, "level", r->in.level); ndr_print_uint32(ndr, "level", r->in.level);
ndr_print_ptr(ndr, "buf", r->in.buf); ndr_print_ptr(ndr, "buffer", r->in.buffer);
ndr->depth++; ndr->depth++;
ndr_print_uint8(ndr, "buf", *r->in.buf); ndr_print_uint8(ndr, "buffer", *r->in.buffer);
ndr->depth--; ndr->depth--;
ndr->depth--; ndr->depth--;
} }
@ -1955,9 +1955,9 @@ _PUBLIC_ void ndr_print_NetGroupSetInfo(struct ndr_print *ndr, const char *name,
ndr_print_string(ndr, "server_name", r->in.server_name); ndr_print_string(ndr, "server_name", r->in.server_name);
ndr_print_string(ndr, "group_name", r->in.group_name); ndr_print_string(ndr, "group_name", r->in.group_name);
ndr_print_uint32(ndr, "level", r->in.level); ndr_print_uint32(ndr, "level", r->in.level);
ndr_print_ptr(ndr, "buf", r->in.buf); ndr_print_ptr(ndr, "buffer", r->in.buffer);
ndr->depth++; ndr->depth++;
ndr_print_uint8(ndr, "buf", *r->in.buf); ndr_print_uint8(ndr, "buffer", *r->in.buffer);
ndr->depth--; ndr->depth--;
ndr->depth--; ndr->depth--;
} }
@ -1992,12 +1992,12 @@ _PUBLIC_ void ndr_print_NetGroupGetInfo(struct ndr_print *ndr, const char *name,
if (flags & NDR_OUT) { if (flags & NDR_OUT) {
ndr_print_struct(ndr, "out", "NetGroupGetInfo"); ndr_print_struct(ndr, "out", "NetGroupGetInfo");
ndr->depth++; ndr->depth++;
ndr_print_ptr(ndr, "buf", r->out.buf); ndr_print_ptr(ndr, "buffer", r->out.buffer);
ndr->depth++; ndr->depth++;
ndr_print_ptr(ndr, "buf", *r->out.buf); ndr_print_ptr(ndr, "buffer", *r->out.buffer);
ndr->depth++; ndr->depth++;
if (*r->out.buf) { if (*r->out.buffer) {
ndr_print_uint8(ndr, "buf", **r->out.buf); ndr_print_uint8(ndr, "buffer", **r->out.buffer);
} }
ndr->depth--; ndr->depth--;
ndr->depth--; ndr->depth--;
@ -2067,9 +2067,9 @@ _PUBLIC_ void ndr_print_NetLocalGroupAdd(struct ndr_print *ndr, const char *name
ndr->depth++; ndr->depth++;
ndr_print_string(ndr, "server_name", r->in.server_name); ndr_print_string(ndr, "server_name", r->in.server_name);
ndr_print_uint32(ndr, "level", r->in.level); ndr_print_uint32(ndr, "level", r->in.level);
ndr_print_ptr(ndr, "buf", r->in.buf); ndr_print_ptr(ndr, "buffer", r->in.buffer);
ndr->depth++; ndr->depth++;
ndr_print_uint8(ndr, "buf", *r->in.buf); ndr_print_uint8(ndr, "buffer", *r->in.buffer);
ndr->depth--; ndr->depth--;
ndr->depth--; ndr->depth--;
} }
@ -2127,12 +2127,12 @@ _PUBLIC_ void ndr_print_NetLocalGroupGetInfo(struct ndr_print *ndr, const char *
if (flags & NDR_OUT) { if (flags & NDR_OUT) {
ndr_print_struct(ndr, "out", "NetLocalGroupGetInfo"); ndr_print_struct(ndr, "out", "NetLocalGroupGetInfo");
ndr->depth++; ndr->depth++;
ndr_print_ptr(ndr, "buf", r->out.buf); ndr_print_ptr(ndr, "buffer", r->out.buffer);
ndr->depth++; ndr->depth++;
ndr_print_ptr(ndr, "buf", *r->out.buf); ndr_print_ptr(ndr, "buffer", *r->out.buffer);
ndr->depth++; ndr->depth++;
if (*r->out.buf) { if (*r->out.buffer) {
ndr_print_uint8(ndr, "buf", **r->out.buf); ndr_print_uint8(ndr, "buffer", **r->out.buffer);
} }
ndr->depth--; ndr->depth--;
ndr->depth--; ndr->depth--;
@ -2155,9 +2155,9 @@ _PUBLIC_ void ndr_print_NetLocalGroupSetInfo(struct ndr_print *ndr, const char *
ndr_print_string(ndr, "server_name", r->in.server_name); ndr_print_string(ndr, "server_name", r->in.server_name);
ndr_print_string(ndr, "group_name", r->in.group_name); ndr_print_string(ndr, "group_name", r->in.group_name);
ndr_print_uint32(ndr, "level", r->in.level); ndr_print_uint32(ndr, "level", r->in.level);
ndr_print_ptr(ndr, "buf", r->in.buf); ndr_print_ptr(ndr, "buffer", r->in.buffer);
ndr->depth++; ndr->depth++;
ndr_print_uint8(ndr, "buf", *r->in.buf); ndr_print_uint8(ndr, "buffer", *r->in.buffer);
ndr->depth--; ndr->depth--;
ndr->depth--; ndr->depth--;
} }
@ -2239,12 +2239,12 @@ _PUBLIC_ void ndr_print_NetRemoteTOD(struct ndr_print *ndr, const char *name, in
if (flags & NDR_OUT) { if (flags & NDR_OUT) {
ndr_print_struct(ndr, "out", "NetRemoteTOD"); ndr_print_struct(ndr, "out", "NetRemoteTOD");
ndr->depth++; ndr->depth++;
ndr_print_ptr(ndr, "buf", r->out.buf); ndr_print_ptr(ndr, "buffer", r->out.buffer);
ndr->depth++; ndr->depth++;
ndr_print_ptr(ndr, "buf", *r->out.buf); ndr_print_ptr(ndr, "buffer", *r->out.buffer);
ndr->depth++; ndr->depth++;
if (*r->out.buf) { if (*r->out.buffer) {
ndr_print_uint8(ndr, "buf", **r->out.buf); ndr_print_uint8(ndr, "buffer", **r->out.buffer);
} }
ndr->depth--; ndr->depth--;
ndr->depth--; ndr->depth--;