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
89a837c4
Commit
89a837c4
authored
Feb 07, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 08, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
aclui: Enable compilation with long types.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
cc6384b0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
Makefile.in
dlls/aclui/Makefile.in
+0
-1
aclui_main.c
dlls/aclui/aclui_main.c
+3
-3
No files found.
dlls/aclui/Makefile.in
View file @
89a837c4
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
MODULE
=
aclui.dll
IMPORTLIB
=
aclui
IMPORTS
=
comctl32 user32 advapi32 gdi32
...
...
dlls/aclui/aclui_main.c
View file @
89a837c4
...
...
@@ -238,7 +238,7 @@ static void init_users(struct security_page *page)
if
(
!
GetSecurityDescriptorDacl
(
page
->
sd
,
&
present
,
&
dacl
,
&
defaulted
))
{
ERR
(
"Failed to query descriptor information, error %u.
\n
"
,
GetLastError
());
ERR
(
"Failed to query descriptor information, error %
l
u.
\n
"
,
GetLastError
());
return
;
}
...
...
@@ -339,14 +339,14 @@ static void security_page_init_dlg(HWND hwnd, struct security_page *page)
if
(
FAILED
(
hr
=
ISecurityInformation_GetSecurity
(
page
->
security
,
DACL_SECURITY_INFORMATION
,
&
page
->
sd
,
FALSE
)))
{
ERR
(
"Failed to get security descriptor, hr %#x.
\n
"
,
hr
);
ERR
(
"Failed to get security descriptor, hr %#
l
x.
\n
"
,
hr
);
return
;
}
if
(
FAILED
(
hr
=
ISecurityInformation_GetAccessRights
(
page
->
security
,
NULL
,
0
,
&
page
->
access
,
&
page
->
access_count
,
&
def
)))
{
ERR
(
"Failed to get access mapping, hr %#x.
\n
"
,
hr
);
ERR
(
"Failed to get access mapping, hr %#
l
x.
\n
"
,
hr
);
return
;
}
...
...
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