Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
781eb0c6
Commit
781eb0c6
authored
Oct 15, 2000
by
Marcus Meissner
Committed by
Alexandre Julliard
Oct 15, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stubbed LookupAccountNameA.
parent
c4296697
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
1 deletion
+18
-1
advapi32.spec
dlls/advapi32/advapi32.spec
+1
-1
security.c
dlls/advapi32/security.c
+17
-0
No files found.
dlls/advapi32/advapi32.spec
View file @
781eb0c6
...
@@ -127,7 +127,7 @@ import ntdll.dll
...
@@ -127,7 +127,7 @@ import ntdll.dll
@ stub LockServiceDatabase
@ stub LockServiceDatabase
@ stub LogonUserA
@ stub LogonUserA
@ stub LogonUserW
@ stub LogonUserW
@ st
ub
LookupAccountNameA
@ st
dcall LookupAccountNameA(str str ptr ptr ptr ptr ptr)
LookupAccountNameA
@ stub LookupAccountNameW
@ stub LookupAccountNameW
@ stdcall LookupAccountSidA(ptr ptr ptr ptr ptr ptr ptr) LookupAccountSidA
@ stdcall LookupAccountSidA(ptr ptr ptr ptr ptr ptr ptr) LookupAccountSidA
@ stdcall LookupAccountSidW(ptr ptr ptr ptr ptr ptr ptr) LookupAccountSidW
@ stdcall LookupAccountSidW(ptr ptr ptr ptr ptr ptr ptr) LookupAccountSidW
...
...
dlls/advapi32/security.c
View file @
781eb0c6
...
@@ -903,3 +903,20 @@ BOOL WINAPI AddAccessAllowedAce(
...
@@ -903,3 +903,20 @@ BOOL WINAPI AddAccessAllowedAce(
{
{
return
RtlAddAccessAllowedAce
(
pAcl
,
dwAceRevision
,
AccessMask
,
pSid
);
return
RtlAddAccessAllowedAce
(
pAcl
,
dwAceRevision
,
AccessMask
,
pSid
);
}
}
/******************************************************************************
* LookupAccountNameA [ADVAPI32.@]
*/
BOOL
WINAPI
LookupAccountNameA
(
IN
LPCSTR
system
,
IN
LPCSTR
account
,
OUT
PSID
sid
,
OUT
LPDWORD
cbSid
,
LPSTR
ReferencedDomainName
,
IN
OUT
LPDWORD
cbReferencedDomainName
,
OUT
PSID_NAME_USE
name_use
)
{
FIXME
(
"(%s,%s,%p,%p,%p,%p,%p), stub.
\n
"
,
system
,
account
,
sid
,
cbSid
,
ReferencedDomainName
,
cbReferencedDomainName
,
name_use
);
return
FALSE
;
}
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