diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-11-10 12:42:45 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-11-10 12:42:45 +0000 |
commit | 657dc577b614f388b55bd52a16e8e014c72bf2db (patch) | |
tree | 50268c1c8a416538ac422e0f9fec8df63ea6b4e0 /source4/librpc/idl | |
parent | 4659d4f9e2bfdbd253ff14e9181dd65023ff6c6a (diff) | |
download | samba-657dc577b614f388b55bd52a16e8e014c72bf2db.tar.gz samba-657dc577b614f388b55bd52a16e8e014c72bf2db.tar.bz2 samba-657dc577b614f388b55bd52a16e8e014c72bf2db.zip |
added idl and test code for lsa_LookupPrivName()
(This used to be commit c742227ec31cbf9b0093b5259095c9812b341d8d)
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r-- | source4/librpc/idl/lsa.idl | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/source4/librpc/idl/lsa.idl b/source4/librpc/idl/lsa.idl index fc8fddd85d..d2410e770d 100644 --- a/source4/librpc/idl/lsa.idl +++ b/source4/librpc/idl/lsa.idl @@ -278,10 +278,20 @@ NTSTATUS SETSECRET (); /* Function: 0x1e */ NTSTATUS QUERYSECRET (); + /* Function: 0x1f */ NTSTATUS LOOKUPPRIVVALUE (); + + /* Function: 0x20 */ - NTSTATUS LOOKUPPRIVNAME (); + NTSTATUS lsa_LookupPrivName ( + [in,ref] policy_handle *handle, + [in] uint32 luid_high, + [in] uint32 luid_low, + [out] lsa_Name *name + ); + + /* Function: 0x21 */ NTSTATUS PRIV_GET_DISPNAME (); /* Function: 0x22 */ |