Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Felix Münchhalfen
wine
Commits
362cb2c0
Commit
362cb2c0
authored
23 years ago
by
Alexandre Julliard
Browse files
Options
Downloads
Patches
Plain Diff
Authors: Dmitry Timoshkov <dmitry@codeweavers.com>, Eric Kohl <ekohl@codeweavers.com>
Implemented CheckTokenMembership and GetAce.
parent
776cb279
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/advapi32/advapi32.spec
+2
-1
2 additions, 1 deletion
dlls/advapi32/advapi32.spec
dlls/advapi32/security.c
+26
-0
26 additions, 0 deletions
dlls/advapi32/security.c
with
28 additions
and
1 deletion
dlls/advapi32/advapi32.spec
+
2
−
1
View file @
362cb2c0
...
...
@@ -89,7 +89,7 @@ debug_channels (advapi crypt reg)
@ stdcall EqualSid(ptr ptr) EqualSid
@ stub FindFirstFreeAce
@ stdcall FreeSid(ptr) FreeSid
@ st
ub
GetAce
@ st
dcall GetAce(ptr long ptr)
GetAce
@ stub GetAclInformation
@ stdcall GetFileSecurityA(str long ptr long ptr) GetFileSecurityA
@ stdcall GetFileSecurityW(wstr long ptr long ptr) GetFileSecurityW
...
...
@@ -323,3 +323,4 @@ debug_channels (advapi crypt reg)
@ stub I_ScSetServiceBitsA
@ stub EnumServiceGroupA
@ stub EnumServiceGroupW
@ stdcall CheckTokenMembership(long ptr ptr) CheckTokenMembership
This diff is collapsed.
Click to expand it.
dlls/advapi32/security.c
+
26
−
0
View file @
362cb2c0
...
...
@@ -90,6 +90,24 @@ AdjustTokenPrivileges( HANDLE TokenHandle, BOOL DisableAllPrivileges,
CallWin32ToNt
(
NtAdjustPrivilegesToken
(
TokenHandle
,
DisableAllPrivileges
,
NewState
,
BufferLength
,
PreviousState
,
ReturnLength
));
}
/******************************************************************************
* CheckTokenMembership [ADVAPI32.@]
*
* PARAMS
* TokenHandle []
* SidToCheck []
* IsMember []
*/
BOOL
WINAPI
CheckTokenMembership
(
HANDLE
TokenHandle
,
PSID
SidToCheck
,
PBOOL
IsMember
)
{
FIXME
(
"(0x%08x %p %p) stub!
\n
"
,
TokenHandle
,
SidToCheck
,
IsMember
);
*
IsMember
=
TRUE
;
return
(
TRUE
);
}
/******************************************************************************
* GetTokenInformation [ADVAPI32.@]
*
...
...
@@ -919,3 +937,11 @@ LookupAccountNameA(
FIXME
(
"(%s,%s,%p,%p,%p,%p,%p), stub.
\n
"
,
system
,
account
,
sid
,
cbSid
,
ReferencedDomainName
,
cbReferencedDomainName
,
name_use
);
return
FALSE
;
}
/******************************************************************************
* GetAce [ADVAPI32.@]
*/
BOOL
WINAPI
GetAce
(
PACL
pAcl
,
DWORD
dwAceIndex
,
LPVOID
*
pAce
)
{
CallWin32ToNt
(
RtlGetAce
(
pAcl
,
dwAceIndex
,
pAce
));
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment