diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-04-03 17:21:26 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2004-04-03 17:21:26 +0000 |
commit | c582f5cf1d94e7c8d3bc8ef63eb4b6e3a6dc1e0f (patch) | |
tree | 15209d0f3b58cb5fb0489e4ebf5308794198fb3b /source4/librpc | |
parent | 84d009d52ecfff08e01374de91260aeffe40b9d9 (diff) | |
download | samba-c582f5cf1d94e7c8d3bc8ef63eb4b6e3a6dc1e0f.tar.gz samba-c582f5cf1d94e7c8d3bc8ef63eb4b6e3a6dc1e0f.tar.bz2 samba-c582f5cf1d94e7c8d3bc8ef63eb4b6e3a6dc1e0f.zip |
added IDL and test for lsa_OpenSecret()
(This used to be commit dd95cd141dc63f16e14f4c9392529653084b5a2a)
Diffstat (limited to 'source4/librpc')
-rw-r--r-- | source4/librpc/idl/lsa.idl | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/source4/librpc/idl/lsa.idl b/source4/librpc/idl/lsa.idl index f90ad030d2..d8c6389bb3 100644 --- a/source4/librpc/idl/lsa.idl +++ b/source4/librpc/idl/lsa.idl @@ -401,8 +401,15 @@ NTSTATUS QUERYTRUSTDOM (); /* Function: 0x1b */ NTSTATUS SETINFOTRUSTDOM (); + /* Function: 0x1c */ - NTSTATUS OPENSECRET (); + NTSTATUS lsa_OpenSecret( + [in,ref] policy_handle *handle, + [in] lsa_Name name, + [in] uint32 desired_access, + [out,ref] policy_handle *sec_handle + ); + /* Function: 0x1d */ NTSTATUS SETSECRET (); /* Function: 0x1e */ |