From 8c79b4cbc152dd4df11d3916739bc851b6db2e86 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Tue, 19 Sep 2006 22:22:57 +0000 Subject: r18690: Regenerate RPC files after pidl changes. (This used to be commit 87d34305374e867eeac9d75d5d690c6b15570e6e) --- source3/librpc/gen_ndr/unixinfo.h | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'source3/librpc/gen_ndr/unixinfo.h') diff --git a/source3/librpc/gen_ndr/unixinfo.h b/source3/librpc/gen_ndr/unixinfo.h index 8f8984963f..232cb935f3 100644 --- a/source3/librpc/gen_ndr/unixinfo.h +++ b/source3/librpc/gen_ndr/unixinfo.h @@ -5,19 +5,19 @@ #include "librpc/gen_ndr/security.h" struct unixinfo_GetPWUidInfo { - NTSTATUS status;/* [keepref] */ - const char * homedir;/* [keepref,flag(LIBNDR_FLAG_STR_UTF8|LIBNDR_FLAG_STR_NULLTERM)] */ - const char * shell;/* [keepref,flag(LIBNDR_FLAG_STR_UTF8|LIBNDR_FLAG_STR_NULLTERM)] */ + NTSTATUS status; + const char * homedir;/* [flag(LIBNDR_FLAG_STR_UTF8|LIBNDR_FLAG_STR_NULLTERM)] */ + const char * shell;/* [flag(LIBNDR_FLAG_STR_UTF8|LIBNDR_FLAG_STR_NULLTERM)] */ }; struct unixinfo_SidToUid { struct { - struct dom_sid sid;/* [keepref] */ + struct dom_sid sid; } in; struct { - uint64_t *uid;/* [keepref,ref] */ + uint64_t *uid;/* [ref] */ NTSTATUS result; } out; @@ -26,11 +26,11 @@ struct unixinfo_SidToUid { struct unixinfo_UidToSid { struct { - uint64_t uid;/* [keepref] */ + uint64_t uid; } in; struct { - struct dom_sid *sid;/* [unique,keepref] */ + struct dom_sid *sid;/* [unique] */ NTSTATUS result; } out; @@ -39,11 +39,11 @@ struct unixinfo_UidToSid { struct unixinfo_SidToGid { struct { - struct dom_sid sid;/* [keepref] */ + struct dom_sid sid; } in; struct { - uint64_t *gid;/* [keepref,ref] */ + uint64_t *gid;/* [ref] */ NTSTATUS result; } out; @@ -52,11 +52,11 @@ struct unixinfo_SidToGid { struct unixinfo_GidToSid { struct { - uint64_t gid;/* [keepref] */ + uint64_t gid; } in; struct { - struct dom_sid *sid;/* [unique,keepref] */ + struct dom_sid *sid;/* [unique] */ NTSTATUS result; } out; @@ -65,13 +65,13 @@ struct unixinfo_GidToSid { struct unixinfo_GetPWUid { struct { - uint32_t *count;/* [keepref,ref,range(0 1023)] */ - uint64_t *uids;/* [keepref,size_is(*count)] */ + uint32_t *count;/* [ref,range(0 1023)] */ + uint64_t *uids;/* [size_is(*count)] */ } in; struct { - uint32_t *count;/* [keepref,ref,range(0 1023)] */ - struct unixinfo_GetPWUidInfo *infos;/* [keepref,size_is(*count)] */ + uint32_t *count;/* [ref,range(0 1023)] */ + struct unixinfo_GetPWUidInfo *infos;/* [size_is(*count)] */ NTSTATUS result; } out; -- cgit