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
6d3d0884
Commit
6d3d0884
authored
Oct 01, 2020
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Oct 02, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msftedit: Use wide-char string literals.
Signed-off-by:
Michael Stefaniuc
<
mstefani@winehq.org
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
93a55831
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
msftedit_main.c
dlls/msftedit/msftedit_main.c
+1
-2
No files found.
dlls/msftedit/msftedit_main.c
View file @
6d3d0884
...
...
@@ -42,7 +42,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(msftedit);
*/
BOOL
WINAPI
DllMain
(
HINSTANCE
inst
,
DWORD
reason
,
LPVOID
reserved
)
{
static
const
WCHAR
riched20W
[]
=
{
'r'
,
'i'
,
'c'
,
'h'
,
'e'
,
'd'
,
'2'
,
'0'
,
'.'
,
'd'
,
'l'
,
'l'
,
0
};
static
HMODULE
richedit
;
switch
(
reason
)
...
...
@@ -51,7 +50,7 @@ BOOL WINAPI DllMain(HINSTANCE inst, DWORD reason, LPVOID reserved)
return
FALSE
;
/* prefer native version */
case
DLL_PROCESS_ATTACH
:
/* explicitly load riched20 since it creates the window classes at dll attach time */
richedit
=
LoadLibraryW
(
riched20W
);
richedit
=
LoadLibraryW
(
L"riched20.dll"
);
DisableThreadLibraryCalls
(
inst
);
break
;
case
DLL_PROCESS_DETACH
:
...
...
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