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
23dd9dc0
Commit
23dd9dc0
authored
Feb 29, 2008
by
Andrew Talbot
Committed by
Alexandre Julliard
Feb 29, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
imm32: Assign to structs instead of using memcpy.
parent
18da6f23
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
imm.c
dlls/imm32/imm.c
+3
-3
No files found.
dlls/imm32/imm.c
View file @
23dd9dc0
...
@@ -1014,7 +1014,7 @@ BOOL WINAPI ImmGetCompositionWindow(HIMC hIMC, LPCOMPOSITIONFORM lpCompForm)
...
@@ -1014,7 +1014,7 @@ BOOL WINAPI ImmGetCompositionWindow(HIMC hIMC, LPCOMPOSITIONFORM lpCompForm)
if
(
!
data
)
if
(
!
data
)
return
FALSE
;
return
FALSE
;
memcpy
(
lpCompForm
,
&
(
data
->
IMC
.
cfCompForm
),
sizeof
(
COMPOSITIONFORM
))
;
*
lpCompForm
=
data
->
IMC
.
cfCompForm
;
return
1
;
return
1
;
}
}
...
@@ -1614,7 +1614,7 @@ BOOL WINAPI ImmSetCompositionFontW(HIMC hIMC, LPLOGFONTW lplf)
...
@@ -1614,7 +1614,7 @@ BOOL WINAPI ImmSetCompositionFontW(HIMC hIMC, LPLOGFONTW lplf)
if
(
!
data
)
if
(
!
data
)
return
FALSE
;
return
FALSE
;
memcpy
(
&
data
->
IMC
.
lfFont
.
W
,
lplf
,
sizeof
(
LOGFONTW
))
;
data
->
IMC
.
lfFont
.
W
=
*
lplf
;
ImmInternalSendIMENotify
(
IMN_SETCOMPOSITIONFONT
,
0
);
ImmInternalSendIMENotify
(
IMN_SETCOMPOSITIONFONT
,
0
);
if
(
data
->
textfont
)
if
(
data
->
textfont
)
...
@@ -1751,7 +1751,7 @@ BOOL WINAPI ImmSetCompositionWindow(
...
@@ -1751,7 +1751,7 @@ BOOL WINAPI ImmSetCompositionWindow(
if
(
!
data
)
if
(
!
data
)
return
FALSE
;
return
FALSE
;
memcpy
(
&
data
->
IMC
.
cfCompForm
,
lpCompForm
,
sizeof
(
COMPOSITIONFORM
))
;
data
->
IMC
.
cfCompForm
=
*
lpCompForm
;
if
(
IsWindowVisible
(
hwndDefault
))
if
(
IsWindowVisible
(
hwndDefault
))
{
{
...
...
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