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
e5b3b4aa
Commit
e5b3b4aa
authored
Oct 07, 2020
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Oct 08, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
progman: Use wide-char string literals.
Signed-off-by:
Michael Stefaniuc
<
mstefani@winehq.org
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
53469751
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
progman.h
programs/progman/progman.h
+4
-4
string.c
programs/progman/string.c
+4
-4
No files found.
programs/progman/progman.h
View file @
e5b3b4aa
...
@@ -190,10 +190,10 @@ VOID DIALOG_Execute(void);
...
@@ -190,10 +190,10 @@ VOID DIALOG_Execute(void);
VOID
STRING_LoadMenus
(
VOID
);
VOID
STRING_LoadMenus
(
VOID
);
/* Class names */
/* Class names */
extern
WCHAR
STRING_MAIN_WIN_CLASS_NAME
[];
extern
const
WCHAR
STRING_MAIN_WIN_CLASS_NAME
[];
extern
WCHAR
STRING_MDI_WIN_CLASS_NAME
[];
extern
const
WCHAR
STRING_MDI_WIN_CLASS_NAME
[];
extern
WCHAR
STRING_GROUP_WIN_CLASS_NAME
[];
extern
const
WCHAR
STRING_GROUP_WIN_CLASS_NAME
[];
extern
WCHAR
STRING_PROGRAM_WIN_CLASS_NAME
[];
extern
const
WCHAR
STRING_PROGRAM_WIN_CLASS_NAME
[];
/* Resource names */
/* Resource names */
#define IDD_MAIN 1
#define IDD_MAIN 1
...
...
programs/progman/string.c
View file @
e5b3b4aa
...
@@ -26,10 +26,10 @@
...
@@ -26,10 +26,10 @@
/* Class names */
/* Class names */
WCHAR
STRING_MAIN_WIN_CLASS_NAME
[]
=
{
'P'
,
'M'
,
'M'
,
'a'
,
'i'
,
'n'
,
0
}
;
const
WCHAR
STRING_MAIN_WIN_CLASS_NAME
[]
=
L"PMMain"
;
WCHAR
STRING_MDI_WIN_CLASS_NAME
[]
=
{
'M'
,
'D'
,
'I'
,
'C'
,
'L'
,
'I'
,
'E'
,
'N'
,
'T'
,
0
}
;
const
WCHAR
STRING_MDI_WIN_CLASS_NAME
[]
=
L"MDICLIENT"
;
WCHAR
STRING_GROUP_WIN_CLASS_NAME
[]
=
{
'P'
,
'M'
,
'G'
,
'r'
,
'o'
,
'u'
,
'p'
,
0
}
;
const
WCHAR
STRING_GROUP_WIN_CLASS_NAME
[]
=
L"PMGroup"
;
WCHAR
STRING_PROGRAM_WIN_CLASS_NAME
[]
=
{
'P'
,
'M'
,
'P'
,
'r'
,
'o'
,
'g'
,
'r'
,
'a'
,
'm'
,
0
}
;
const
WCHAR
STRING_PROGRAM_WIN_CLASS_NAME
[]
=
L"PMProgram"
;
VOID
STRING_LoadMenus
(
VOID
)
VOID
STRING_LoadMenus
(
VOID
)
{
{
...
...
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