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
28442721
Commit
28442721
authored
Dec 12, 2005
by
Eric Pouech
Committed by
Alexandre Julliard
Dec 12, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Const correctness fixes.
parent
8e203745
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
finddlg32.c
dlls/commdlg/finddlg32.c
+1
-1
ole16.c
dlls/ole32/ole16.c
+2
-2
cursoricon.c
dlls/user/cursoricon.c
+1
-1
No files found.
dlls/commdlg/finddlg32.c
View file @
28442721
...
...
@@ -385,7 +385,7 @@ static HWND COMDLG32_FR_DoFindReplace(
hmod
=
(
HMODULE
)
pdata
->
fr
.
hInstance
;
if
(
pdata
->
fr
.
Flags
&
FR_WINE_UNICODE
)
{
htemplate
=
FindResourceW
(
hmod
,
(
LPWSTR
)
pdata
->
fr
.
lpTemplateName
,
(
LPWSTR
)
RT_DIALOG
);
htemplate
=
FindResourceW
(
hmod
,
(
LP
C
WSTR
)
pdata
->
fr
.
lpTemplateName
,
(
LPWSTR
)
RT_DIALOG
);
}
else
{
...
...
dlls/ole32/ole16.c
View file @
28442721
...
...
@@ -144,7 +144,7 @@ SEGPTR IMalloc16_fnRealloc(IMalloc16* iface,SEGPTR pv,DWORD cb)
/******************************************************************************
* IMalloc16_GetSize [COMPOBJ.506]
*/
DWORD
IMalloc16_fnGetSize
(
const
IMalloc16
*
iface
,
SEGPTR
pv
)
DWORD
IMalloc16_fnGetSize
(
IMalloc16
*
iface
,
SEGPTR
pv
)
{
IMalloc16Impl
*
This
=
(
IMalloc16Impl
*
)
iface
;
TRACE
(
"(%p)->GetSize(%08lx)
\n
"
,
This
,
pv
);
...
...
@@ -154,7 +154,7 @@ DWORD IMalloc16_fnGetSize(const IMalloc16* iface,SEGPTR pv)
/******************************************************************************
* IMalloc16_DidAlloc [COMPOBJ.507]
*/
INT16
IMalloc16_fnDidAlloc
(
const
IMalloc16
*
iface
,
LPVOID
pv
)
{
INT16
IMalloc16_fnDidAlloc
(
IMalloc16
*
iface
,
LPVOID
pv
)
{
IMalloc16
*
This
=
(
IMalloc16
*
)
iface
;
TRACE
(
"(%p)->DidAlloc(%p)
\n
"
,
This
,
pv
);
return
(
INT16
)
-
1
;
...
...
dlls/user/cursoricon.c
View file @
28442721
...
...
@@ -284,7 +284,7 @@ static BOOL is_dib_monochrome( const BITMAPINFO* info )
}
else
/* assume BITMAPINFOHEADER */
{
RGBQUAD
*
rgb
=
info
->
bmiColors
;
const
RGBQUAD
*
rgb
=
info
->
bmiColors
;
/* Check if the first color is black */
if
((
rgb
->
rgbRed
==
0
)
&&
(
rgb
->
rgbGreen
==
0
)
&&
...
...
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