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
2e944d8e
Commit
2e944d8e
authored
May 31, 2007
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Jun 01, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
atl: Fix compilation warnings in 64-bit mode.
parent
c6b64b0b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
atl_ax.c
dlls/atl/atl_ax.c
+4
-4
No files found.
dlls/atl/atl_ax.c
View file @
2e944d8e
...
@@ -1146,8 +1146,8 @@ static LPDLGTEMPLATEW AX_ConvertDialogTemplate(LPCDLGTEMPLATEW src_tmpl)
...
@@ -1146,8 +1146,8 @@ static LPDLGTEMPLATEW AX_ConvertDialogTemplate(LPCDLGTEMPLATEW src_tmpl)
while
(
rescount
--
)
while
(
rescount
--
)
{
{
src
=
(
const
WORD
*
)(
(
((
ULONG
)
src
)
+
3
)
&
~
3
);
/* align on DWORD boundary */
src
=
(
const
WORD
*
)(
(
((
ULONG
_PTR
)
src
)
+
3
)
&
~
3
);
/* align on DWORD boundary */
filled
=
(
filled
+
1
)
&
~
1
;
/* depends on DWORD-aligned allocation unit */
filled
=
(
filled
+
1
)
&
~
1
;
/* depends on DWORD-aligned allocation unit */
tmp
=
src
;
tmp
=
src
;
if
(
ext
)
if
(
ext
)
...
@@ -1167,8 +1167,8 @@ static LPDLGTEMPLATEW AX_ConvertDialogTemplate(LPCDLGTEMPLATEW src_tmpl)
...
@@ -1167,8 +1167,8 @@ static LPDLGTEMPLATEW AX_ConvertDialogTemplate(LPCDLGTEMPLATEW src_tmpl)
src
+=
strlenW
(
src
)
+
1
;
/* title */
src
+=
strlenW
(
src
)
+
1
;
/* title */
if
(
GET_WORD
(
tmp
)
==
'{'
)
/* all this mess created because of this line */
if
(
GET_WORD
(
tmp
)
==
'{'
)
/* all this mess created because of this line */
{
{
const
WCHAR
AtlAxWin
[
9
]
=
{
'A'
,
't'
,
'l'
,
'A'
,
'x'
,
'W'
,
'i'
,
'n'
,
0
};
static
const
WCHAR
AtlAxWin
[
9
]
=
{
'A'
,
't'
,
'l'
,
'A'
,
'x'
,
'W'
,
'i'
,
'n'
,
0
};
PUT_BLOCK
(
AtlAxWin
,
sizeof
(
AtlAxWin
)
/
sizeof
(
W
ORD
));
PUT_BLOCK
(
AtlAxWin
,
sizeof
(
AtlAxWin
)
/
sizeof
(
W
CHAR
));
PUT_BLOCK
(
tmp
,
strlenW
(
tmp
)
+
1
);
PUT_BLOCK
(
tmp
,
strlenW
(
tmp
)
+
1
);
}
else
}
else
PUT_BLOCK
(
tmp
,
src
-
tmp
);
PUT_BLOCK
(
tmp
,
src
-
tmp
);
...
...
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