1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

re-run make idl.

Guenther
(This used to be commit 4b79d54574)
This commit is contained in:
Günther Deschner 2008-07-18 01:21:38 +02:00
parent 54362a85f6
commit f15740f424
3 changed files with 75 additions and 2 deletions

View File

@ -703,6 +703,25 @@ struct NetLocalGroupSetInfo {
};
struct NetLocalGroupEnum {
struct {
const char * server_name;
uint32_t level;
uint32_t prefmaxlen;
uint32_t *resume_handle;/* [ref] */
} in;
struct {
uint8_t **buffer;/* [ref] */
uint32_t *entries_read;/* [ref] */
uint32_t *total_entries;/* [ref] */
uint32_t *resume_handle;/* [ref] */
enum NET_API_STATUS result;
} out;
};
struct NetRemoteTOD {
struct {
const char * server_name;

View File

@ -2054,6 +2054,55 @@ _PUBLIC_ void ndr_print_NetLocalGroupSetInfo(struct ndr_print *ndr, const char *
ndr->depth--;
}
_PUBLIC_ void ndr_print_NetLocalGroupEnum(struct ndr_print *ndr, const char *name, int flags, const struct NetLocalGroupEnum *r)
{
ndr_print_struct(ndr, name, "NetLocalGroupEnum");
ndr->depth++;
if (flags & NDR_SET_VALUES) {
ndr->flags |= LIBNDR_PRINT_SET_VALUES;
}
if (flags & NDR_IN) {
ndr_print_struct(ndr, "in", "NetLocalGroupEnum");
ndr->depth++;
ndr_print_string(ndr, "server_name", r->in.server_name);
ndr_print_uint32(ndr, "level", r->in.level);
ndr_print_uint32(ndr, "prefmaxlen", r->in.prefmaxlen);
ndr_print_ptr(ndr, "resume_handle", r->in.resume_handle);
ndr->depth++;
ndr_print_uint32(ndr, "resume_handle", *r->in.resume_handle);
ndr->depth--;
ndr->depth--;
}
if (flags & NDR_OUT) {
ndr_print_struct(ndr, "out", "NetLocalGroupEnum");
ndr->depth++;
ndr_print_ptr(ndr, "buffer", r->out.buffer);
ndr->depth++;
ndr_print_ptr(ndr, "buffer", *r->out.buffer);
ndr->depth++;
if (*r->out.buffer) {
ndr_print_uint8(ndr, "buffer", **r->out.buffer);
}
ndr->depth--;
ndr->depth--;
ndr_print_ptr(ndr, "entries_read", r->out.entries_read);
ndr->depth++;
ndr_print_uint32(ndr, "entries_read", *r->out.entries_read);
ndr->depth--;
ndr_print_ptr(ndr, "total_entries", r->out.total_entries);
ndr->depth++;
ndr_print_uint32(ndr, "total_entries", *r->out.total_entries);
ndr->depth--;
ndr_print_ptr(ndr, "resume_handle", r->out.resume_handle);
ndr->depth++;
ndr_print_uint32(ndr, "resume_handle", *r->out.resume_handle);
ndr->depth--;
ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
ndr->depth--;
}
ndr->depth--;
}
_PUBLIC_ void ndr_print_NetRemoteTOD(struct ndr_print *ndr, const char *name, int flags, const struct NetRemoteTOD *r)
{
ndr_print_struct(ndr, name, "NetRemoteTOD");

View File

@ -60,9 +60,11 @@
#define NDR_NETLOCALGROUPSETINFO (0x1a)
#define NDR_NETREMOTETOD (0x1b)
#define NDR_NETLOCALGROUPENUM (0x1b)
#define NDR_LIBNETAPI_CALL_COUNT (28)
#define NDR_NETREMOTETOD (0x1c)
#define NDR_LIBNETAPI_CALL_COUNT (29)
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);
@ -195,6 +197,9 @@ void ndr_print_NetLocalGroupGetInfo(struct ndr_print *ndr, const char *name, int
enum ndr_err_code ndr_push_NetLocalGroupSetInfo(struct ndr_push *ndr, int flags, const struct NetLocalGroupSetInfo *r);
enum ndr_err_code ndr_pull_NetLocalGroupSetInfo(struct ndr_pull *ndr, int flags, struct NetLocalGroupSetInfo *r);
void ndr_print_NetLocalGroupSetInfo(struct ndr_print *ndr, const char *name, int flags, const struct NetLocalGroupSetInfo *r);
enum ndr_err_code ndr_push_NetLocalGroupEnum(struct ndr_push *ndr, int flags, const struct NetLocalGroupEnum *r);
enum ndr_err_code ndr_pull_NetLocalGroupEnum(struct ndr_pull *ndr, int flags, struct NetLocalGroupEnum *r);
void ndr_print_NetLocalGroupEnum(struct ndr_print *ndr, const char *name, int flags, const struct NetLocalGroupEnum *r);
enum ndr_err_code ndr_push_NetRemoteTOD(struct ndr_push *ndr, int flags, const struct NetRemoteTOD *r);
enum ndr_err_code ndr_pull_NetRemoteTOD(struct ndr_pull *ndr, int flags, struct NetRemoteTOD *r);
void ndr_print_NetRemoteTOD(struct ndr_print *ndr, const char *name, int flags, const struct NetRemoteTOD *r);