diff options
author | Günther Deschner <gd@samba.org> | 2009-07-17 13:09:26 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-07-17 13:50:33 +0200 |
commit | 9ac5f5c8ce6b82d26ed6efc4632e08182d2fda39 (patch) | |
tree | 93fa3f752836d65affc353ad1690fb76dfde5302 /librpc/idl | |
parent | b180fe34a71a595d0dea8e72877149361b531e02 (diff) | |
download | samba-9ac5f5c8ce6b82d26ed6efc4632e08182d2fda39.tar.gz samba-9ac5f5c8ce6b82d26ed6efc4632e08182d2fda39.tar.bz2 samba-9ac5f5c8ce6b82d26ed6efc4632e08182d2fda39.zip |
lsa: fill in lsa_StorePrivateData and lsa_RetrievePrivateData and rerun make samba3-idl.
Guenther
Diffstat (limited to 'librpc/idl')
-rw-r--r-- | librpc/idl/lsa.idl | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/librpc/idl/lsa.idl b/librpc/idl/lsa.idl index 3d7077ccac..7f8ed4afe3 100644 --- a/librpc/idl/lsa.idl +++ b/librpc/idl/lsa.idl @@ -935,10 +935,18 @@ import "misc.idl", "security.idl"; ); /* Function: 0x2a */ - [todo] NTSTATUS lsa_StorePrivateData(); - /* Function: 0x2b */ - [todo] NTSTATUS lsa_RetrievePrivateData(); + NTSTATUS lsa_StorePrivateData( + [in] policy_handle *handle, + [in,ref] lsa_String *name, + [in,unique] lsa_DATA_BUF *val + ); + /* Function: 0x2b */ + NTSTATUS lsa_RetrievePrivateData( + [in] policy_handle *handle, + [in,ref] lsa_String *name, + [in,out,ref] lsa_DATA_BUF **val + ); /**********************/ /* Function: 0x2c */ |