Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
b740819e
Commit
b740819e
authored
Nov 11, 2008
by
Kai Blin
Committed by
Alexandre Julliard
Nov 11, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Implement LsaSetSecret stub.
parent
2c594fb7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
1 deletion
+25
-1
advapi32.spec
dlls/advapi32/advapi32.spec
+1
-1
lsa.c
dlls/advapi32/lsa.c
+24
-0
No files found.
dlls/advapi32/advapi32.spec
View file @
b740819e
...
@@ -397,7 +397,7 @@
...
@@ -397,7 +397,7 @@
@ stdcall LsaSetInformationPolicy(long long ptr)
@ stdcall LsaSetInformationPolicy(long long ptr)
@ stub LsaSetInformationTrustedDomain
@ stub LsaSetInformationTrustedDomain
# @ stub LsaSetQuotasForAccount
# @ stub LsaSetQuotasForAccount
@ st
ub LsaSetSecret
@ st
dcall LsaSetSecret(ptr ptr ptr)
# @ stub LsaSetSecurityObject
# @ stub LsaSetSecurityObject
@ stub LsaSetSystemAccessAccount
@ stub LsaSetSystemAccessAccount
@ stdcall LsaSetTrustedDomainInfoByName(ptr ptr long ptr)
@ stdcall LsaSetTrustedDomainInfoByName(ptr ptr long ptr)
...
...
dlls/advapi32/lsa.c
View file @
b740819e
...
@@ -624,6 +624,30 @@ NTSTATUS WINAPI LsaSetInformationPolicy(
...
@@ -624,6 +624,30 @@ NTSTATUS WINAPI LsaSetInformationPolicy(
}
}
/******************************************************************************
/******************************************************************************
* LsaSetSecret [ADVAPI32.@]
*
* Set old and new values on a secret handle
*
* PARAMS
* SecretHandle [I] Handle to a secret object.
* EncryptedCurrentValue [I] Pointer to encrypted new value, can be NULL
* EncryptedOldValue [I] Pointer to encrypted old value, can be NULL
*
* RETURNS
* Success: STATUS_SUCCESS
* Failure: NTSTATUS code.
*/
NTSTATUS
WINAPI
LsaSetSecret
(
IN
LSA_HANDLE
SecretHandle
,
IN
PLSA_UNICODE_STRING
EncryptedCurrentValue
,
IN
PLSA_UNICODE_STRING
EncryptedOldValue
)
{
FIXME
(
"(%p,%p,%p) stub
\n
"
,
SecretHandle
,
EncryptedCurrentValue
,
EncryptedOldValue
);
return
STATUS_SUCCESS
;
}
/******************************************************************************
* LsaSetTrustedDomainInfoByName [ADVAPI32.@]
* LsaSetTrustedDomainInfoByName [ADVAPI32.@]
*
*
*/
*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment