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
630dc0f5
Commit
630dc0f5
authored
Sep 15, 2004
by
Dimitrie O. Paun
Committed by
Alexandre Julliard
Sep 15, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use the W version of the function were we can.
parent
63cf3e2c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
message.c
dlls/user/message.c
+1
-1
cursoricon.c
windows/cursoricon.c
+1
-1
winproc.c
windows/winproc.c
+2
-2
No files found.
dlls/user/message.c
View file @
630dc0f5
...
...
@@ -2281,7 +2281,7 @@ BOOL WINAPI PeekMessageW( MSG *msg_out, HWND hwnd, UINT first, UINT last, UINT f
/* need to fill the window handle for WM_PAINT message */
if
(
msg
.
message
==
WM_PAINT
)
{
if
(
IsIconic
(
msg
.
hwnd
)
&&
GetClassLong
A
(
msg
.
hwnd
,
GCL_HICON
))
if
(
IsIconic
(
msg
.
hwnd
)
&&
GetClassLong
W
(
msg
.
hwnd
,
GCL_HICON
))
{
msg
.
message
=
WM_PAINTICON
;
msg
.
wParam
=
1
;
...
...
windows/cursoricon.c
View file @
630dc0f5
...
...
@@ -127,7 +127,7 @@ static void *map_fileW( LPCWSTR name )
OPEN_EXISTING
,
FILE_FLAG_RANDOM_ACCESS
,
0
);
if
(
hFile
!=
INVALID_HANDLE_VALUE
)
{
hMapping
=
CreateFileMapping
A
(
hFile
,
NULL
,
PAGE_READONLY
,
0
,
0
,
NULL
);
hMapping
=
CreateFileMapping
W
(
hFile
,
NULL
,
PAGE_READONLY
,
0
,
0
,
NULL
);
CloseHandle
(
hFile
);
if
(
hMapping
)
{
...
...
windows/winproc.c
View file @
630dc0f5
...
...
@@ -777,7 +777,7 @@ INT WINPROC_MapMsg32ATo32W( HWND hwnd, UINT msg, WPARAM *pwparam, LPARAM *plpara
xs
->
lpszClass
=
xs
->
cs
.
lpszClass
=
usBuffer
.
Buffer
;
}
if
(
GetWindowLong
A
(
hwnd
,
GWL_EXSTYLE
)
&
WS_EX_MDICHILD
)
if
(
GetWindowLong
W
(
hwnd
,
GWL_EXSTYLE
)
&
WS_EX_MDICHILD
)
{
MDICREATESTRUCTW
*
mdi_cs
=
(
MDICREATESTRUCTW
*
)
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
*
mdi_cs
));
...
...
@@ -962,7 +962,7 @@ LRESULT WINPROC_UnmapMsg32ATo32W( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lPa
if
(
xs
->
lpszName
)
HeapFree
(
GetProcessHeap
(),
0
,
xs
->
lpszName
);
if
(
xs
->
lpszClass
)
HeapFree
(
GetProcessHeap
(),
0
,
xs
->
lpszClass
);
if
(
GetWindowLong
A
(
hwnd
,
GWL_EXSTYLE
)
&
WS_EX_MDICHILD
)
if
(
GetWindowLong
W
(
hwnd
,
GWL_EXSTYLE
)
&
WS_EX_MDICHILD
)
{
MDICREATESTRUCTW
*
mdi_cs
=
(
MDICREATESTRUCTW
*
)
xs
->
cs
.
lpCreateParams
;
if
(
HIWORD
(
mdi_cs
->
szTitle
))
...
...
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