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
790424f0
Commit
790424f0
authored
Sep 26, 2007
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Sep 27, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Move the storage specifier to the beginning of the declaration.
parent
6506dff8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
security.c
dlls/advapi32/security.c
+7
-7
No files found.
dlls/advapi32/security.c
View file @
790424f0
...
...
@@ -3611,7 +3611,7 @@ static BOOL DumpSid(PSID psid, WCHAR **pwptr, ULONG *plen)
return
DumpSidNumeric
(
psid
,
pwptr
,
plen
);
}
const
static
LPCWSTR
AceRightBitNames
[
32
]
=
{
static
const
LPCWSTR
AceRightBitNames
[
32
]
=
{
SDDL_CREATE_CHILD
,
/* 0 */
SDDL_DELETE_CHILD
,
SDDL_LIST_CHILDREN
,
...
...
@@ -3648,7 +3648,7 @@ const static LPCWSTR AceRightBitNames[32] = {
static
void
DumpRights
(
DWORD
mask
,
WCHAR
**
pwptr
,
ULONG
*
plen
)
{
const
static
WCHAR
fmtW
[]
=
{
'0'
,
'x'
,
'%'
,
'x'
,
0
};
static
const
WCHAR
fmtW
[]
=
{
'0'
,
'x'
,
'%'
,
'x'
,
0
};
WCHAR
buf
[
15
];
int
i
;
...
...
@@ -3688,9 +3688,9 @@ static void DumpRights(DWORD mask, WCHAR **pwptr, ULONG *plen)
static
BOOL
DumpAce
(
LPVOID
pace
,
WCHAR
**
pwptr
,
ULONG
*
plen
)
{
ACCESS_ALLOWED_ACE
*
piace
;
/* all the supported ACEs have the same memory layout */
const
static
WCHAR
openbr
=
'('
;
const
static
WCHAR
closebr
=
')'
;
const
static
WCHAR
semicolon
=
';'
;
static
const
WCHAR
openbr
=
'('
;
static
const
WCHAR
closebr
=
')'
;
static
const
WCHAR
semicolon
=
';'
;
if
(((
PACE_HEADER
)
pace
)
->
AceType
>
SYSTEM_ALARM_ACE_TYPE
||
((
PACE_HEADER
)
pace
)
->
AceSize
<
sizeof
(
ACCESS_ALLOWED_ACE
))
{
...
...
@@ -3777,7 +3777,7 @@ static BOOL DumpAcl(PACL pacl, WCHAR **pwptr, ULONG *plen, BOOL protected, BOOL
static
BOOL
DumpOwner
(
PSECURITY_DESCRIPTOR
SecurityDescriptor
,
WCHAR
**
pwptr
,
ULONG
*
plen
)
{
const
static
WCHAR
prefix
[]
=
{
'O'
,
':'
,
0
};
static
const
WCHAR
prefix
[]
=
{
'O'
,
':'
,
0
};
BOOL
bDefaulted
;
PSID
psid
;
...
...
@@ -3795,7 +3795,7 @@ static BOOL DumpOwner(PSECURITY_DESCRIPTOR SecurityDescriptor, WCHAR **pwptr, UL
static
BOOL
DumpGroup
(
PSECURITY_DESCRIPTOR
SecurityDescriptor
,
WCHAR
**
pwptr
,
ULONG
*
plen
)
{
const
static
WCHAR
prefix
[]
=
{
'G'
,
':'
,
0
};
static
const
WCHAR
prefix
[]
=
{
'G'
,
':'
,
0
};
BOOL
bDefaulted
;
PSID
psid
;
...
...
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