From 725edd20f1589be310a8d1bab7a0aa907a55416e Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Thu, 20 Jan 2005 16:51:24 +0000 Subject: r4868: Add "net rpc user RENAME"-command. Note that Samba3 does not yet support it server-side. Guenther (This used to be commit b2c8220931733593fd312fc25b6c73f440b4567a) --- source3/include/rpc_samr.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'source3/include/rpc_samr.h') diff --git a/source3/include/rpc_samr.h b/source3/include/rpc_samr.h index 9945f674c8..a007bcd2e5 100644 --- a/source3/include/rpc_samr.h +++ b/source3/include/rpc_samr.h @@ -412,6 +412,13 @@ typedef struct sam_user_info_10 } SAM_USER_INFO_10; +/* SAM_USER_INFO_7 */ +typedef struct sam_user_info_7 +{ + UNIHDR hdr_name; /* unicode header for name */ + UNISTR2 uni_name; /* unicode string for name */ + +} SAM_USER_INFO_7; /* SAMR_Q_CLOSE_HND - probably a policy handle close */ @@ -1273,6 +1280,7 @@ typedef struct sam_userinfo_ctr_info union { + SAM_USER_INFO_7 *id7; /* auth-level 0x07 */ SAM_USER_INFO_10 *id10; /* auth-level 0x10 */ SAM_USER_INFO_11 *id11; /* auth-level 0x11 */ SAM_USER_INFO_12 *id12; /* auth-level 0x12 */ -- cgit