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
3c842c0d
Commit
3c842c0d
authored
Mar 06, 2007
by
Andrew Talbot
Committed by
Alexandre Julliard
Mar 06, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comdlg32: Replace const pointer parameters with correct pointers to const.
parent
a4187777
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
filedlg31.c
dlls/comdlg32/filedlg31.c
+1
-1
filedlg31.h
dlls/comdlg32/filedlg31.h
+1
-1
fontdlg16.c
dlls/comdlg32/fontdlg16.c
+1
-1
No files found.
dlls/comdlg32/filedlg31.c
View file @
3c842c0d
...
...
@@ -696,7 +696,7 @@ static LPWSTR FD31_DupToW(LPCSTR str, DWORD size)
* FD31_MapOfnStructA [internal]
* map a 32 bits Ansi structure to an Unicode one
*/
void
FD31_MapOfnStructA
(
const
LPOPENFILENAMEA
ofnA
,
LPOPENFILENAMEW
ofnW
,
BOOL
open
)
void
FD31_MapOfnStructA
(
const
OPENFILENAMEA
*
ofnA
,
LPOPENFILENAMEW
ofnW
,
BOOL
open
)
{
UNICODE_STRING
usBuffer
;
...
...
dlls/comdlg32/filedlg31.h
View file @
3c842c0d
...
...
@@ -54,7 +54,7 @@ extern BOOL FD31_Init(void);
extern
PFD31_DATA
FD31_AllocPrivate
(
LPARAM
lParam
,
UINT
dlgType
,
PFD31_CALLBACKS
callbacks
,
DWORD
data
);
extern
void
FD31_DestroyPrivate
(
PFD31_DATA
lfs
);
extern
void
FD31_MapOfnStructA
(
LPOPENFILENAMEA
ofnA
,
LPOPENFILENAMEW
ofnW
,
BOOL
open
);
extern
void
FD31_MapOfnStructA
(
const
OPENFILENAMEA
*
ofnA
,
LPOPENFILENAMEW
ofnW
,
BOOL
open
);
extern
void
FD31_FreeOfnW
(
LPOPENFILENAMEW
ofnW
);
extern
BOOL
FD31_CallWindowProc
(
PFD31_DATA
lfs
,
UINT
wMsg
,
WPARAM
wParam
,
LPARAM
lParam
);
...
...
dlls/comdlg32/fontdlg16.c
View file @
3c842c0d
...
...
@@ -44,7 +44,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(commdlg);
static
const
WCHAR
strWineFontData16
[]
=
{
'_'
,
'_'
,
'W'
,
'I'
,
'N'
,
'E'
,
'_'
,
'F'
,
'O'
,
'N'
,
'T'
,
'D'
,
'L'
,
'G'
,
'D'
,
'A'
,
'T'
,
'A'
,
'1'
,
'6'
,
0
};
static
void
FONT_LogFont16To32W
(
const
L
PLOGFONT16
font16
,
LPLOGFONTW
font32
)
static
void
FONT_LogFont16To32W
(
const
L
OGFONT16
*
font16
,
LPLOGFONTW
font32
)
{
font32
->
lfHeight
=
font16
->
lfHeight
;
font32
->
lfWidth
=
font16
->
lfWidth
;
...
...
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