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
649215b2
Commit
649215b2
authored
Sep 26, 2006
by
Mikołaj Zalewski
Committed by
Alexandre Julliard
Sep 27, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msrle32: Show correctly the authors surname in some non-latin1 languages.
parent
077a3812
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
msrle32.c
dlls/msrle32/msrle32.c
+5
-5
msrle_Cs.rc
dlls/msrle32/msrle_Cs.rc
+1
-1
msrle_Hu.rc
dlls/msrle32/msrle_Hu.rc
+1
-1
No files found.
dlls/msrle32/msrle32.c
View file @
649215b2
...
...
@@ -1203,16 +1203,16 @@ static LRESULT Configure(CodecInfo *pi, HWND hWnd)
static
LRESULT
About
(
CodecInfo
*
pi
,
HWND
hWnd
)
{
CHAR
szTitle
[
20
];
CHAR
szAbout
[
128
];
W
CHAR
szTitle
[
20
];
W
CHAR
szAbout
[
128
];
/* pre-condition */
assert
(
MSRLE32_hModule
!=
0
);
LoadString
A
(
MSRLE32_hModule
,
IDS_NAME
,
szTitle
,
sizeof
(
szTitle
));
LoadString
A
(
MSRLE32_hModule
,
IDS_ABOUT
,
szAbout
,
sizeof
(
szAbout
));
LoadString
W
(
MSRLE32_hModule
,
IDS_NAME
,
szTitle
,
sizeof
(
szTitle
));
LoadString
W
(
MSRLE32_hModule
,
IDS_ABOUT
,
szAbout
,
sizeof
(
szAbout
));
MessageBox
A
(
hWnd
,
szAbout
,
szTitle
,
MB_OK
|
MB_ICONINFORMATION
);
MessageBox
W
(
hWnd
,
szAbout
,
szTitle
,
MB_OK
|
MB_ICONINFORMATION
);
return
ICERR_OK
;
}
...
...
dlls/msrle32/msrle_Cs.rc
View file @
649215b2
...
...
@@ -28,5 +28,5 @@ STRINGTABLE DISCARDABLE
{
IDS_NAME "WINE-MS-RLE"
IDS_DESCRIPTION "Wine MS-RLE video kodek"
IDS_ABOUT "Wine MS-RLE video kodek\nCopyright 2002 Michael Gnnewig"
IDS_ABOUT
L
"Wine MS-RLE video kodek\nCopyright 2002 Michael Gnnewig"
}
dlls/msrle32/msrle_Hu.rc
View file @
649215b2
...
...
@@ -24,5 +24,5 @@ STRINGTABLE DISCARDABLE
{
IDS_NAME "WINE-MS-RLE"
IDS_DESCRIPTION "Wine MS-RLE video kodek"
IDS_ABOUT
"Wine MS-RLE video kodek\nCopyright 2002, Michael G
nnewig"
IDS_ABOUT
L"Wine MS-RLE video kodek\nCopyright 2002, Michael G\x00fc
nnewig"
}
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