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
de70942e
Commit
de70942e
authored
Mar 07, 2005
by
Jason Edmeades
Committed by
Alexandre Julliard
Mar 07, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add stub for SetSecurityInfo.
parent
cdbab8bc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
advapi32.spec
dlls/advapi32/advapi32.spec
+1
-1
security.c
dlls/advapi32/security.c
+10
-0
No files found.
dlls/advapi32/advapi32.spec
View file @
de70942e
...
...
@@ -288,7 +288,7 @@
@ stdcall SetSecurityDescriptorGroup (ptr ptr long)
@ stdcall SetSecurityDescriptorOwner (ptr ptr long)
@ stdcall SetSecurityDescriptorSacl(ptr long ptr long)
@ st
ub SetSecurityInfo #(ptr long ptr ptr
ptr ptr ptr ptr)
@ st
dcall SetSecurityInfo (long long long
ptr ptr ptr ptr)
@ stdcall SetServiceBits(long long long long)
@ stdcall SetServiceObjectSecurity(long long ptr)
@ stdcall SetServiceStatus(long long)
...
...
dlls/advapi32/security.c
View file @
de70942e
...
...
@@ -3316,3 +3316,13 @@ BOOL WINAPI EncryptFileA(LPCSTR lpFileName)
FIXME
(
"%s
\n
"
,
debugstr_a
(
lpFileName
));
return
TRUE
;
}
/******************************************************************************
* SetSecurityInfo [ADVAPI32.@]
*/
DWORD
SetSecurityInfo
(
HANDLE
handle
,
SE_OBJECT_TYPE
ObjectType
,
SECURITY_INFORMATION
SecurityInfo
,
PSID
psidOwner
,
PSID
psidGroup
,
PACL
pDacl
,
PACL
pSacl
)
{
FIXME
(
"stub
\n
"
);
return
ERROR_SUCCESS
;
}
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