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
6ec9cc2b
Commit
6ec9cc2b
authored
Feb 28, 2002
by
Michael Cardenas
Committed by
Alexandre Julliard
Feb 28, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More complete implementation of SHLWAPI_356.
parent
c129764a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
8 deletions
+20
-8
ordinal.c
dlls/shlwapi/ordinal.c
+20
-8
No files found.
dlls/shlwapi/ordinal.c
View file @
6ec9cc2b
...
@@ -1866,18 +1866,30 @@ WORD WINAPI SHLWAPI_352 (
...
@@ -1866,18 +1866,30 @@ WORD WINAPI SHLWAPI_352 (
return
ret
;
return
ret
;
}
}
/*************************************************************************
/**************************************************************************
* @ [SHLWAPI.356]
* @ [SHLWAPI.356]
*
* mbc - this function is undocumented, The parameters are correct and
* the calls to InitializeSecurityDescriptor and
* SetSecurityDescriptorDacl are correct, but apparently some
* apps call this function with all zero parameters.
*/
*/
DWORD
WINAPI
SHLWAPI_356
(
LPVOID
x
,
DWORD
WINAPI
SHLWAPI_356
(
PACL
pDacl
,
PSECURITY_DESCRIPTOR
pSD
,
LPCSTR
*
str
)
LPVOID
y
,
LPVOID
z
)
{
{
FIXME
(
"(%p %p %p)stub
\n
"
,
x
,
y
,
z
);
if
(
str
!=
0
){
return
0
;
*
str
=
0
;
}
if
(
!
pDacl
){
return
0
;
}
if
(
!
InitializeSecurityDescriptor
(
pSD
,
1
))
return
0
;
return
SetSecurityDescriptorDacl
(
pSD
,
1
,
pDacl
,
0
);
}
}
/*************************************************************************
/*************************************************************************
* @ [SHLWAPI.357]
* @ [SHLWAPI.357]
*
*
...
...
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